-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path4Sum.java
More file actions
68 lines (63 loc) · 2.34 KB
/
4Sum.java
File metadata and controls
68 lines (63 loc) · 2.34 KB
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
67
68
/*
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.
For example, given array S = {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)
*/
public class Solution {
public ArrayList<ArrayList<Integer>> fourSum(int[] num, int target) {
// IMPORTANT: Please reset any member data you declared, as
// the same Solution instance will be reused for each test case.
Arrays.sort(num);
ArrayList<ArrayList<Integer>> result = new ArrayList<ArrayList<Integer>>();
int length = num.length;
if (length < 4) {
return result;
}
for (int i = 0; i < length - 3; i++) {
if (i != 0 && num[i] == num[i - 1]) {
continue;
}
for (int j = length - 1; j >= 2 ; j--) {
if (j != length - 1 && num[j] == num[j + 1]) {
continue;
}
int L = i + 1;
int R = j - 1;
int cur = num[i] + num[j];
int remainder = target - cur;
while (L < R) {
if (L != i + 1 && num[L] == num[L - 1]) {
L++;
continue;
}
if (R != j - 1 && num[R] == num[R + 1]) {
R--;
continue;
}
int temp = num[L] + num[R];
if (temp == remainder) {
ArrayList<Integer> list = new ArrayList<Integer>();
list.add(num[i]);
list.add(num[L]);
list.add(num[R]);
list.add(num[j]);
result.add(list);
L++;
R--;
} else if (temp < remainder) {
L++;
} else {
R--;
}
}
}
}
return result;
}
}