LeetCode 216. Combination Sum III

简介: 找出所有相加之和为 n 的 k 个数的组合。组合中只允许含有 1 - 9 的正整数,并且每种组合中不存在重复的数字。

v2-de929cf8b15400203eec13c944765a0d_1440w.jpg


Description



Find all possible combinations of k numbers that add up to a number n, given that only numbers from 1 to 9 can be used and each combination should be a unique set of numbers.


Note:


All numbers will be positive integers.

The solution set must not contain duplicate combinations.


Example 1:

Input: k = 3, n = 7

Output: [[1,2,4]]


Example 2:

Input: k = 3, n = 9

Output: [[1,2,6], [1,3,5], [2,3,4]]


描述



找出所有相加之和为 n 的 k 个数的组合。组合中只允许含有 1 - 9 的正整数,并且每种组合中不存在重复的数字。


说明:

所有数字都是正整数。

解集不能包含重复的组合。


示例 1:

输入: k = 3, n = 7

输出: 1,2,4


示例 2:

输入: k = 3, n = 9

输出: 1,2,6], [1,3,5], [2,3,4


思路



  • 这道题使用递归求解,在元素1-9中,假设从2-8所有数中选出不重复的组合使其和为n-1的结果已经找到,我们将1放到所有的解中即可.


# -*- coding: utf-8 -*-
# @Author:             何睿
# @Create Date:        2019-01-24 06:37:54
# @Last Modified by:   何睿
# @Last Modified time: 2019-01-26 20:38:26
class Solution:
    def combinationSum3(self, k, n):
        """
        :type k: int
        :type n: int
        :rtype: List[List[int]]
        """
        return self.recursion([i for i in range(1, 10)], k, n)
    def recursion(self, nums, k, _sum):
        if k <= 0: return
        if k == 1:
            if _sum in nums: return [[_sum]]
            else: return []
        res = []
        # 递归求解
        for i in range(len(nums)):
            # 从当前元素后面位置中寻找解
            # 假设从数组nums[i + 1:]中选取k - 1个数并且使其和为_sum - nums[i]的所有组合已经找到
            # 我们将当前元素添加到结果中即可
            for item in self.recursion(nums[i + 1:], k - 1, _sum - nums[i]):
                res.append(item + [nums[i]])
        # 返回结果
        return res


源代码文件在这里.

目录
相关文章
Leetcode 377. Combination Sum IV
赤裸裸的完全背包,属于动态规划的范畴,大家有兴趣可以在网上搜索下其他资料。个人觉得动态规划还是比较难理解的,更难给别人讲清楚,所以这里我直接附上我的代码供大家参考。
46 0
LeetCode 39. Combination Sum
给定一个无重复元素的数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合。 candidates 中的数字可以无限制重复被选取。
71 0
LeetCode 39. Combination Sum
LeetCode 377. Combination Sum IV
给定一个由正整数组成且不存在重复数字的数组,找出和为给定目标正整数的组合的个数。
92 0
LeetCode 377. Combination Sum IV
LeetCode 216 Combination Sum III(Backtracking)(*)
版权声明:转载请联系本人,感谢配合!本站地址:http://blog.csdn.net/nomasp https://blog.csdn.net/NoMasp/article/details/51935033 翻译 找出所有的k个数字相加得到数字n的组合,只有1到9的数字可以被使用,并且每个组合间需要是不同的数字集。
729 0
LeetCode - 39. Combination Sum
39. Combination Sum  Problem's Link  ---------------------------------------------------------------------------- Mean:  给你一个待选集合s和一个数n,让你找出集合s中相加之和为n的所有组合.
823 0
LeetCode - 40. Combination Sum II
40. Combination Sum II  Problem's Link  ---------------------------------------------------------------------------- Mean:  给你一个待选集合s和一个数n,选出所有相加之和为n的组合.
1006 0
|
2月前
|
Unix Shell Linux
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
本文提供了几个Linux shell脚本编程问题的解决方案,包括转置文件内容、统计词频、验证有效电话号码和提取文件的第十行,每个问题都给出了至少一种实现方法。
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行