-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy path4Sum.cpp
61 lines (52 loc) · 1.64 KB
/
4Sum.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
/*
Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = target? Find all unique quadruplets in the array which gives the sum of target.
Note:
Elements in a quadruplet (a,b,c,d) must be in non-descending order. (ie, a ≤ b ≤ c ≤ d)
The solution set must not contain duplicate quadruplets.
Example :
Given array S = {1 0 -1 0 -2 2}, and target = 0
A solution set is:
(-2, -1, 1, 2)
(-2, 0, 0, 2)
(-1, 0, 0, 1)
Also make sure that the solution set is lexicographically sorted.
Solution[i] < Solution[j] iff Solution[i][0] < Solution[j][0] OR (Solution[i][0] == Solution[j][0] AND ... Solution[i][k] < Solution[j][k])
LINK: https://www.interviewbit.com/problems/4-sum/
*/
vector<vector<int> > Solution::fourSum(vector<int> &A, int B)
{
map<vector<int>, bool> hash;
sort(A.begin(), A.end());
int n = A.size();
vector<vector<int> > res;
for(int i=0;i<n;i++)
{
for(int j=i+1;j<n;j++)
{
int k = j+1;
int l = n-1;
while(k<l)
{
int sum = A[i] + A[j] + A[k] + A[l];
if(sum>B)
l--;
else
if(sum<B)
k++;
else
if(sum==B)
{
vector<int> v = {A[i],A[j],A[k],A[l]};
if(hash.find(v)==hash.end())
{
res.push_back(v);
hash[v] = true;
}
k++;
l--;
}
}
}
}
return res;
}