前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >打卡群刷题总结0827——组合总和 II

打卡群刷题总结0827——组合总和 II

作者头像
木又AI帮
发布2020-09-01 11:12:50
2700
发布2020-09-01 11:12:50
举报
文章被收录于专栏:木又AI帮木又AI帮

题目:40. 组合总和 II

链接:https://leetcode-cn.com/problems/combination-sum-ii

给定一个数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合。 candidates 中的每个数字在每个组合中只能使用一次。 说明: 所有数字(包括目标数)都是正整数。 解集不能包含重复的组合。 示例 1: 输入: candidates = [10,1,2,7,6,1,5], target = 8, 所求解集为: [ [1, 7], [1, 2, 5], [2, 6], [1, 1, 6] ] 示例 2: 输入: candidates = [2,5,2,1,2], target = 5, 所求解集为: [ [1,2,2], [5] ]

解题:

1、DFS:为了避免元素重复,可以将数组排序,在递归时,记录遍历的开始位置。此外,遍历时,只要i > start并且nums[i] == nums[i - 1],则跳过该数。

代码:

代码语言:javascript
复制
class Solution(object):
    def dfs(self, nums, start, target, current):
        if target == 0:
            self.res.append(current)
        for i in range(start, len(nums)):
            if i > start and nums[i] == nums[i - 1]:
                continue
            if target - nums[i] < 0:
                return
            current2 = copy.copy(current)
            current2.append(nums[i])
            self.dfs(nums, i + 1, target - nums[i], current2)
    
    def combinationSum2(self, candidates, target):
        """
        :type candidates: List[int]
        :type target: int
        :rtype: List[List[int]]
        """
        candidates.sort()
        self.res = []
        self.dfs(candidates, 0, target, [])
        return self.res

PS:刷了打卡群的题,再刷另一道题,并且总结,确实耗费很多时间。如果时间不够,以后的更新会总结打卡群的题。

PPS:还是得日更呀,总结一下总是好的。

本文参与 腾讯云自媒体分享计划,分享自微信公众号。
原始发表:2020-08-28,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 木又AI帮 微信公众号,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档