40. Combination Sum II

这篇博客介绍了一个Python解决方案,用于解决给定候选数数组和目标数,找到所有和为目标数的独特组合。通过深度优先搜索(DFS)实现,避免重复组合。文章提供了两种解法,一种使用集合去重,另一种利用排序简化问题,两者都利用了递归。

40. Combination Sum II

Medium

266587Add to ListShare

Given a collection of candidate numbers (candidates) and a target number (target), find all unique combinations in candidates where the candidate numbers sum to target.

Each number in candidates may only be used once in the combination.

Note: The solution set must not contain duplicate combinations.

Example 1:

Input: candidates = [10,1,2,7,6,1,5], target = 8
Output: 
[
[1,1,6],
[1,2,5],
[1,7],
[2,6]
]

Example 2:

Input: candidates = [2,5,2,1,2], target = 5
Output: 
[
[1,2,2],
[5]
]

Constraints:

  • 1 <= candidates.length <= 100
  • 1 <= candidates[i] <= 50
  • 1 <= target <= 30
class Solution:
    def combinationSum2(self, candidates: List[int], target: int) -> List[List[int]]:
        """
        解题思路:dfs深搜,枚举每个位置,拿或者不拿
        时间复杂度:O(2^n)
        """
        result = []
        # 集合去重
        used = set()
        sums = [0] * len(candidates)

        def dfs(index: int, cur_num: int, cur_list: List[int]):
            if cur_num == target:
                l = sorted(list(cur_list))
                use_key = tuple(l)
                if used.__contains__(use_key):
                    return
                used.add(use_key)
                result.append(l)
                return
            if cur_num > target:
                return
            if index >= 0 and sums[-1] - sums[index] < target - cur_num:
                # 剪枝,剩余的不够
                return
            for j in range(index + 1, len(candidates)):
                cur_list.append(candidates[j])
                dfs(j, cur_num + candidates[j], cur_list)
                cur_list.pop(len(cur_list) - 1)

        # 预处理前n个和
        sums[0] = candidates[0]
        for i in range(1, len(candidates)):
            sums[i] = sums[i - 1] + candidates[i]

        dfs(-1, 0, [])
        return result

学习别人更好的解法:

Loading...Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.https://leetcode.com/problems/combination-sum-ii/discuss/16944/Beating-98-Python-solution-using-recursion-with-comments

class Solution:
    def combinationSum2(self, candidates: List[int], target: int) -> List[List[int]]:
        # Sorting is really helpful, se we can avoid over counting easily
        candidates.sort()                      
        result = []
        self.combine_sum_2(candidates, 0, [], result, target)
        return result
    
    def combine_sum_2(self, nums, start, path, result, target):
        # Base case: if the sum of the path satisfies the target, we will consider 
        # it as a solution, and stop there
        if not target:
            result.append(path)
            return
    
        for i in range(start, len(nums)):
            # Very important here! We don't use `i > 0` because we always want 
            # to count the first element in this recursive step even if it is the same 
            # as one before. To avoid overcounting, we just ignore the duplicates
            # after the first element.
            if i > start and nums[i] == nums[i - 1]:
                continue

            # If the current element is bigger than the assigned target, there is 
            # no need to keep searching, since all the numbers are positive
            if nums[i] > target:
                break

            # We change the start to `i + 1` because one element only could
            # be used once
            self.combine_sum_2(nums, i + 1, path + [nums[i]], result, target - nums[i])

    

在调用 `Solution` 类的 `combinationSum2` 方法时出现 `AttributeError: 'Solution' object has no attribute 'combinationSum2'` 错误,通常表示该类中并未定义 `combinationSum2` 方法。此类错误可能由以下几个原因导致: - **拼写错误**:方法名可能存在拼写错误,例如大小写不一致或多余的字符。Python 是大小写敏感的语言,因此 `combinationSum2` 和 `combinationsum2` 会被视为不同的标识符。 - **方法未定义**:如果 `combinationSum2` 方法未在 `Solution` 类中定义,则尝试调用时会引发 `AttributeError`。确保该方法已在类中正确定义。 - **继承问题**:如果 `Solution` 类继承自另一个包含 `combinationSum2` 方法的类,但未正确继承或覆盖该方法,也可能导致此错误。 - **IDE 或编辑器缓存问题**:有时,开发环境可能未及时更新代码更改,导致调用旧版本的类定义。尝试重启 IDE 或清除缓存后重新运行代码。 以下是一个示例,展示如何正确定义 `combinationSum2` 方法: ```python class Solution: def combinationSum2(self, candidates, target): # 方法实现 pass ``` 如果用户确实意图调用 `combinationSum` 方法而非 `combinationSum2`,则应检查调用语句是否正确,并确认方法名拼写一致。此外,可以使用 `dir(Solution)` 函数查看 `Solution` 类中所有可用的方法和属性,以确认 `combinationSum2` 是否存在。 ### 示例:检查类的方法 ```python print(dir(Solution)) # 列出 Solution 类的所有属性和方法 ``` 通过上述方式,可以有效诊断并修复 `AttributeError: 'Solution' object has no attribute 'combinationSum2'` 错误。 ---
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值