-
Notifications
You must be signed in to change notification settings - Fork 0
/
18.4sum.cpp
64 lines (64 loc) · 1.58 KB
/
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
54
55
56
57
58
59
60
61
62
63
64
/*
* [18] 4Sum
*
* https://leetcode.com/problems/4sum/description/
*
* algorithms
* Medium (27.65%)
* Total Accepted: 158K
* Total Submissions: 571.2K
* Testcase Example: '[1,0,-1,0,-2,2]\n0'
*
* 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) {
int n = nums.size();
vector<vector<int>> ans;
if (! n) return ans;
sort(nums.begin(), nums.end());
for (int i = 0; i < n-3; i++) {
for (int j = i+1; j < n-2; j++) {
int l = j+1, r = n-1;
while (l < r) {
if (nums[i]+nums[j]+nums[l]+nums[r] == target) {
vector<int> tmp = {nums[i], nums[j], nums[l], nums[r]};
ans.push_back(tmp);
// while (l+1 < n && nums[l] == nums[++l]) l++;
// while (r-1 >= 0 && nums[r] == nums[--r]) r--;
while (l+1 < n && nums[l] == nums[l+1]) l++;
l++;
while (r-1 >= 0 && nums[r] == nums[r-1]) r--;
r--;
}
else if (nums[i]+nums[j]+nums[l]+nums[r] < target) l++;
else if (nums[i]+nums[j]+nums[l]+nums[r] > target) r--;
}
while (nums[j] == nums[j+1]) j++;
}
while (nums[i] == nums[i+1]) i++;
}
return ans;
}
};