[LeetCode] Combination Sum III

1478 ワード

Combination Sum III
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.
Ensure that numbers within the set are sorted in ascending order.
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]]

Credits: Special thanks to @mithmatt for adding this problem and creating all test cases.
問題解決の考え方:
1〜9の9個のうち、k個の異なる数を指定した値nに等しくするように選択することを意味する.
問題の意味を理解すれば、問題は比較的簡単になります.1つの再帰シミュレーションで遡及すればよい.注意vectorにはpop_がありますback()の方法.これはとてもいいです.
class Solution {
public:
    vector<vector<int>> combinationSum3(int k, int n) {
        vector<vector<int>> result;
        
        vector<int> item;
        helper(result, item, 0, k, n);
        
        return result;
    }
    
    //max item       ,left      ,k       
    void helper(vector<vector<int>>& result, vector<int>& item, int max, int k, int left){
        if(item.size()==k&&left==0){
            result.push_back(item);
            return;
        }
        for(int i=max+1; i<=9&&i<=left; i++){
            item.push_back(i);
            helper(result, item, i, k, left-i);
            item.pop_back();
        }
    }
};