-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path39.Combination-Sum.java
46 lines (36 loc) · 1.19 KB
/
39.Combination-Sum.java
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
// https://leetcode.com/problems/combination-sum/
//
// algorithms
// Medium (48.64%)
// Total Accepted: 345,225
// Total Submissions: 709,733
// beats 100.00% of java submissions
class Solution {
public List<List<Integer>> combinationSum(int[] candidates, int target) {
Arrays.sort(candidates);
ArrayList<List<Integer>> res = new ArrayList<List<Integer>>();
recursive(candidates, 0, target, res, new ArrayList<Integer>());
return res;
}
public void recursive(int[] candidates, int idx, int curNum, ArrayList<List<Integer>> l, ArrayList<Integer> path) {
int len = candidates.length;
if (curNum == 0) {
l.add(new ArrayList<Integer>(path));
return;
}
if (curNum < 0) {
return;
}
if (idx == len) {
return;
}
for (int i = idx; i < len; i++) {
if (curNum < candidates[i]) {
break;
}
path.add(candidates[i]);
recursive(candidates, i, curNum - candidates[i], l, path);
path.remove(path.size() - 1);
}
}
}