-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfourSum.cpp
66 lines (57 loc) · 2.08 KB
/
fourSum.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
#include<vector>
#include<iostream>
using namespace std;
class Solution {
public:
vector<vector<int>> fourSum(vector<int>& nums, int target) {
sort(nums.begin(), nums.end());
vector<vector<int>> res;
int n = nums.size();
for(int i = 0; i < n - 3; ++i){
if(i > 0 && nums[i] == nums[i - 1])
continue;
//边界
if(nums[i] + nums[i+1] + nums[i+2] + nums[i+3] > target){
break;
}
//边界
if(nums[i] + nums[n - 1] + nums[n - 2] + nums[n - 3] < target){
continue;
}
for(int j = i + 1; j < n - 2; ++j){
if( j > i + 1 && nums[j] == nums[j - 1]){
continue;
}
int left = j + 1, right = n - 1;
while(left < right){
if(nums[i] + nums[j] + nums[left] + nums[right] == target){
res.push_back({nums[i], nums[j], nums[left], nums[right]});
//指针移动
int left0 = left + 1;
while(left0 < right && nums[left] == nums[left0]){
left0++;
}
left = left0;
int right0 = right - 1;
while (right0 > left && nums[right] == nums[right0])
{
right0--;
}
right = right0;
}
if(nums[i] + nums[j] + nums[left] + nums[right] > target){
int right0 = right - 1;
while (right0 > left && nums[right] == nums[right0])
{
right0--;
}
right = right0;
}else{
left++;
}
}
}
}
return res;
}
};