给定一个无重复元素的数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合。
candidates 中的数字可以无限制重复被选取。
说明:
- 所有数字(包括 target)都是正整数。
- 解集不能包含重复的组合。
示例 1:
1
2
3
4
5
6
|
输入: candidates = [2,3,6,7], target = 7,
所求解集为:
[
[7],
[2,2,3]
]
|
示例 2:
1
2
3
4
5
6
7
|
输入: candidates = [2,3,5], target = 8,
所求解集为:
[
[2,2,2,2],
[2,3,3],
[3,5]
]
|
回溯法
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
|
class Solution:
def combinationSum(self, candidates, target: int):
if not candidates:
return []
result = []
def isvalid(path, value, target):
total = sum(path) + value
if total > target:
return False
return True
def backtrack(path, candidates):
if sum(path) == target:
path = sorted(path)
if path not in result:
result.append(path)
return None
for value in candidates:
if not isvalid(path, value, target):
continue
path.append(value)
backtrack(path, candidates)
path.pop()
backtrack([], candidates)
return result
|