THRSUM - ZERO TRIPLET
The general elections are coming and so Rahul and Modi have started the preparations. An astrologer predicted that whoever solves the given problem first will win the elections.
The problem is as follows: Given an array nums
of n integers, are there elements a, b, c in nums
such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero.
As I want Modi to win, so you have to solve this problem for Modi before Rahul does... Good Luck
Input
In the first line, you will be given t the number of test cases. For each test case you will be given n, the size of the array. In the next line you will be given n space separated elements of the array.
Input constraints: t <= 10000, n <= 10000 (sum of n over all test cases won't exceed 10^8)
Output
Output the number of such triplets and subsequently print each of the triplets in a separate line in lexicographic order.
Example
Input:
2
5
-1 0 1 2 -1
3
0 0 0
Output:
2
-1 -1 2
-1 0 1
1
0 0 0
hide comments
nadstratosfer:
2018-05-24 07:15:53
Input is badly formatted, line-based reading crashes a Python solution. Psetter, please check if there are no linebreaks between numbers of the same array. Other than that, well designed problem in that rejecting sub-optimal solutions still allows PyPy to get AC. Last edit: 2018-05-24 07:34:32 |
|
sikh_coder:
2018-05-23 21:16:10
Can't think of a better sol than O(n^2*logn)...
|
|
be1035016:
2018-05-23 19:42:05
@vipul just to avoid sub-optimal solutions |
|
Vipul Srivastava:
2018-05-23 18:13:56
@author you have changed the problem by adding more than one test case, is there a reason behind it? My ACd solution gets AC after adding code to handle more than one test case. |
Added by: | ac_baz |
Date: | 2018-05-23 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All |
Resource: | https://www.hackerrank.com/contests/cnc-02/challenges/the-simplest-counting-problem/editorial |