跳到主要内容

Combination Sum

描述

Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.

The same repeated number may be chosen from C unlimited number of times.

Note:

  • All numbers (including target) will be positive integers.
  • Elements in a combination (a1,a2,...,aka_1, a_2, ..., a_k) must be in non-descending order. (ie, a1a2...aka_1 \leq a_2 \leq ... \leq a_k).
  • The solution set must not contain duplicate combinations.

For example, given candidate set 2,3,6,7 and target 7, A solution set is:

[7]
[2, 2, 3]

分析

代码

# Combination Sum
# 时间复杂度O(n!),空间复杂度O(n)
class Solution:
def combinationSum(self, nums: list[int], target: int) -> list[list[int]]:
nums.sort()
result = [] # 最终结果
path = [] # 中间结果
self.dfs(nums, path, result, target, 0)
return result

def dfs(self, nums: list[int], path: list[int],
result: list[list[int]], gap: int, start: int) -> None:
if gap == 0: # 找到一个合法解
result.append(path[:])
return
for i in range(start, len(nums)): # 扩展状态
if gap < nums[i]: return # 剪枝

path.append(nums[i]) # 执行扩展动作
self.dfs(nums, path, result, gap - nums[i], i)
path.pop() # 撤销动作

相关题目