leetcode 40 组合总和2

这道题不光要判断组合的顺序问题,因为数组中存在重复的元素,所以应该避免会有重复的结果。
使用47全排列的方法,先将数组进行排序,然后判断数组当前元素是否与之前元素相同,如果相同判断一下之前元素是否有遍历过马,没遍历过算是在同层的元素,如果遍历过不是同层的元素。

class Solution:
    def combinationSum2(self, candidates: List[int], target: int) -> List[List[int]]:

        def dfs(i,path,result,visit,target):
            if target==0:

                result.append(path[:])
                return 
            for j in range(i,len(candidates)):
                if target-candidates[j]<0:continue
                #if len(path)>0 and path[-1]>candidates[j]:continue
                #if j>i and candidates[j]==candidates[j-1]:continue
                if j>=1 and candidates[j]==candidates[j-1] and j-1 not in visit:
                    continue
                path.append(candidates[j])
                dfs(j+1,path,result,visit+[j],target-candidates[j])
                path.pop()
        if len(candidates)==0:
            return []
        result=[]
        candidates=sorted(candidates)
        dfs(0,[],result,[],target)
        return result

通过另一种判断是否在树的同层元素有相同的,如果有则通过j是否大于初始元素判断是否是同层还是上下层,剪枝。

class Solution:
    def combinationSum2(self, candidates: List[int], target: int) -> List[List[int]]:

        def dfs(i,path,result,target):
            if target==0:
                if path not in result:
                    result.append(path[:])
                return 
            for j in range(i,len(candidates)):
                if target-candidates[j]<0:continue
                if len(path)>0 and path[-1]>candidates[j]:continue
                if j>i and candidates[j]==candidates[j-1]:continue
                path.append(candidates[j])
                dfs(j+1,path,result,target-candidates[j])
                path.pop()
        if len(candidates)==0:
            return []
        result=[]
        candidates=sorted(candidates)
        dfs(0,[],result,target)
        return result
全部评论

相关推荐

昨天 13:08
蚌埠坦克学院 C++
服从性笔试吗,发这么多笔,现在还在发。
蟑螂恶霸zZ:傻 x 公司,发两次笔试,两次部门匹配挂,
投递金山WPS等公司10个岗位 >
点赞 评论 收藏
分享
去B座二楼砸水泥地:不过也可以理解,这种应该没参加过秋招
点赞 评论 收藏
分享
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务