-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLeetCode_18_4Sum.cpp
53 lines (50 loc) · 1.68 KB
/
LeetCode_18_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
/*
Given an array nums of n integers and an integer target, are there
elements a, b, c, and d in nums such that a + b + c + d = target?
Find all unique quadruplets in the array which gives the sum of target.
Note:
The solution set must not contain duplicate quadruplets.
Example:
Given array nums = [1, 0, -1, 0, -2, 2], and target = 0.
A solution set is:
[
[-1, 0, 0, 1],
[-2, -1, 1, 2],
[-2, 0, 0, 2]
]
*/
class Solution {
public:
vector<vector<int>> fourSum( vector<int>& nums, int target ) {
vector<vector<int>> result;
size_t n = nums.size();
if( n < 4 ) return result;
sort( nums.begin(), nums.end() );
for( int i=0; i < n-3; ++i ) {
if( i > 0 && nums[i] == nums[i-1] ) continue; // avoid duplicates
if( nums[i] + nums[i+1] + nums[i+2] + nums[i+3] > target ) break;
if( nums[i] + nums[n-3] + nums[n-2] + nums[n-1 ] < target ) continue;
for( int j=i+1 ; j < n-2; ++j ) {
if( j > i+1 && nums[j] == nums[j-1] ) continue; // avoid duplicates
if( nums[i] + nums[j] + nums[j+1] + nums[j+2] > target ) break;
if( nums[i] + nums[j] + nums[n-2] + nums[n-1] < target ) continue;
int l = j+1; // left pointer
int r = n-1; // right pointer
while( l < r ) {
int sum = nums[i] + nums[j] + nums[l] + nums[r];
if( sum < target ) {
++l; // increment left pointer since sum < target
} else if( sum > target ) {
--r; // decrement right pointer since sum > target
} else {
result.push_back( { nums[i], nums[j], nums[l], nums[r] } );
// avoid duplicates
do { l++; } while( nums[l] == nums[l-1] && l < r );
do { r--; } while( nums[r] == nums[r+1] && l < r );
}
}
}
}
return result;
}
};