zoukankan      html  css  js  c++  java
  • Combination Sum II

    Given a collection of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.

    Each number in C may only be used once in the combination.

    Note:

    • All numbers (including target) will be positive integers.
    • Elements in a combination (a1, a2, … , ak) must be in non-descending order. (ie, a1a2 ≤ … ≤ ak).
    • The solution set must not contain duplicate combinations.

    For example, given candidate set 10,1,2,7,6,1,5 and target 8,
    A solution set is:
    [1, 7]
    [1, 2, 5]
    [2, 6]
    [1, 1, 6]

    注意:结果需要排序,不能有相同的结果

     void dfs(vector<int> &sum, int nStart, int target, vector<int> tmp, vector<vector<int> > &res)
        {
            short nNum = sum.size();
            if (nStart > nNum)
                return;
        
            if (target < 0)
                return;
        
            if (target == 0)
            {
                res.push_back(tmp);
                return;
            }
        
            for (int i = nStart; i < sum.size(); i++)
            {
                if (sum[i] > target)
                    continue;
                tmp.push_back(sum[i]);
                dfs(sum, i+1, target-sum[i], tmp, res);
                tmp.pop_back();
                while (i < sum.size() - 1 && sum[i] == sum[i+1])
                    i++;
            }
        }
        
        vector<vector<int> > combinationSum2(vector<int> &num, int target) {
            vector<vector<int> > res;
            vector<int> tmp;
            sort(num.begin(), num.end());
            dfs(num, 0, target, tmp, res);
            sort(res.begin(),res.end());
            return res;
        }
  • 相关阅读:
    直线型一阶倒立摆5---硬件平台搭建
    PE view---重要参数--C语言实现
    A1132. Cut Integer
    A1131. Subway Map (30)
    A1130. Infix Expression
    A1129. Recommendation System
    A1128. N Queens Puzzle
    A1127. ZigZagging on a Tree
    A1126. Eulerian Path
    A1125. Chain the Ropes
  • 原文地址:https://www.cnblogs.com/zhhwgis/p/3958221.html
Copyright © 2011-2022 走看看