【39】給定一個無重的數組 candidates 和一個目標數 target ,找出 candidates 中所有可以使數字和爲 target 的組合。 candidates 中的數字可以無限制重複

#encoding=utf8
#
'''
給定一個無重複元素的數組 candidates 和一個目標數 target ,找出 candidates 中所有可以使數字和爲 target 的組合。

candidates 中的數字可以無限制重複被選取。

說明:

所有數字(包括 target)都是正整數。
解集不能包含重複的組合。
示例 1:

輸入: candidates = [2,3,6,7], target = 7,
  所求解集爲:
  [
      [7],
        [2,2,3]
        ]
        示例 2:

        輸入: candidates = [2,3,5], target = 8,
        所求解集爲:
        [
            [2,2,2,2],
            [2,3,3],
            [3,5]
          ]

          來源:力扣(LeetCode)
          鏈接:https://leetcode-cn.com/problems/combination-sum
          著作權歸領釦網絡所有。商業轉載請聯繫官方授權,非商業轉載請註明出處。'''
ans = []
path = []

ans = []
path=[]
count=0
import copy
class Solution2(object):
    def combinationSum(self, candidates, target):
        global path
        """
        :type nums: List[int]
        :rtype: List[List[int]]
        """
        def robot(idx, candidates, cur_sum):
            #print 'n:',n,'k:',k,'len(path):',len(path)
            global count
            count +=1
            if cur_sum == target:
                ans.append(copy.copy(path))
                return
            if cur_sum >target:return
            for i in candidates:
                path.append(i)
                robot(idx+1, candidates, cur_sum+i)
                path.pop()
        ans = []
        path = []
        cur_sum = 0
        robot(0, candidates, cur_sum)
        return ans

if __name__ == '__main__':
  a = Solution2()
  candidates = [2,3,6,7]
  target = 7
  print a.combinationSum(candidates,target)
  print '遞歸了',count,'次'

[[2, 2, 3], [2, 3, 2], [3, 2, 2], [7]]
遞歸了 37 次
 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章