-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3sum.cpp
66 lines (59 loc) · 2.05 KB
/
3sum.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/**********************************
Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0?
Find all unique triplets in the array which gives the sum of zero.
Note:
Elements in a triplet (a,b,c) must be in non-descending order. (ie, a ≤ b ≤ c)
The solution set must not contain duplicate triplets.
For example, given array S = {-1 0 1 2 -1 -4},
A solution set is:
(-1, 0, 1)
(-1, -1, 2)
*********************************/
#include <vector>
using namespace std;
class Solution {
public:
vector<vector<int> > threeSum(vector<int> &num) {
sort(num.begin(), num.end());
return threeSum(num, 0, 0, 0, 3);
}
vector<vector<int> > threeSum(vector<int> &num, int start, int sum,
int sumNow, int count) {
vector<vector<int> > res;
if(count == 0){
}
else if(count == 1){
for(int i = start; i < (int)num.size(); i++){
if(sumNow + num[i] == sum){
vector<int> a(1, num[i]);
res.push_back(a);
}
else if(sumNow + num[i] > sum && num[i] >= 0){
break;
}
while(i < num.size()-1 && num[i] == num[i+1]){
i++;
}
}
}
else{
for(int i = start; i < (int)num.size()-count+1; i++){
if(sumNow + num[i] > sum && num[i] >= 0){
break;
}
else{
vector<vector<int> > resPart = threeSum(num, i+1, sum,
sumNow+num[i], count-1);
for(auto it = resPart.begin(); it != resPart.end(); it++){
it->insert(it->begin(), num[i]);
res.push_back(*it);
}
}
while(i < num.size()-1 && num[i] == num[i+1]){
i++;
}
}
}
return res;
}
};