LeetCode 40組合總數

2021-08-19 17:22:22 字數 1401 閱讀 5291

給定乙個陣列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]]

本題主要是在上一道題(組合總數)的基礎上增加了重複的問題,所以在上乙個的搜尋樹的基礎上增加剪枝就可以完成該功能了。

剪枝的方式如下:對於當前層,相同的數字我只取乙個。原有的剪枝:對於當前數字和已經超過數字target的情況,直接剪枝。

import copy

res =

class solution:

def combinationsum2(self, candidates, target):

""":type candidates: list[int]

:type target: int

:rtype: list[list[int]]

"""res.clear()

if len(candidates) == 0:

return res

candidates.sort()

self.combinationsumhelper(,-1,target,candidates)

return res

def combinationsumhelper(self,now,i,tar,candidates):

if sum(now) == tar and now not in res:

dummy = copy.deepcopy(now)

return

if sum(now) > tar:

return

else:

temp = -9999

for j in range(i+1,len(candidates)):

if candidates[j]!=temp:

self.combinationsumhelper(now,j,tar,candidates)

now.pop()

temp = candidates[j]

LeetCode 40 組合總數II

給定乙個陣列candidates和乙個目標數target,找出candidates中所有可以使數字和為target的組合。candidates中的每個數字在每個組合中只能使用一次 輸入 candidates 10,1,2,7,6,1,5 target 8,所求解集為 1,7 1,2,5 2,6 1,...

leetcode 40 組合總和

給定乙個陣列candidates和乙個目標數target,找出candidates中所有可以使數字和為target的組合。candidates中的每個數字在每個組合中只能使用一次。說明 示例 1 輸入 candidates 10,1,2,7,6,1,5 target 8,所求解集為 1,7 1,2,...

leetcode40 組合總和 II

給定乙個陣列 candidates 和乙個目標數 target 找出 candidates 中所有可以使數字和為 target 的組合。candidates 中的每個數字在每個組合中只能使用一次。說明 所有數字 包括目標數 都是正整數。解集不能包含重複的組合。示例 1 輸入 candidates 1...