首页 > 其他 > 详细

Combination Sum

时间:2014-06-04 20:10:43      阅读:425      评论:0      收藏:0      [点我收藏+]

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

The same repeated number may be chosen from C unlimited number of times.

Note:

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

For example, given candidate set 2,3,6,7 and target 7
A solution set is: 
[7] 
[2, 2, 3] 

bubuko.com,布布扣
class Solution {
public:
    vector<vector<int> > combinationSum(vector<int> &candidates, int target) 
    {
        //sort candidates
        int size=candidates.size();
        for(int i=0;i<size;i++)
            for(int j=i+1;j<size;j++)
                if(candidates[i]>candidates[j])
                {
                    int tmp=candidates[i];
                    candidates[i]=candidates[j];
                    candidates[j]=tmp;
                }
        //dfs
        vector<vector<int>> result;
        if(size==0return result;
        
        int v[target/candidates[0]];
        int cdep=0;
        int vdep=0;
        dfs(result,candidates,size,v,cdep,vdep,target);
        return result;
    }
    
    void dfs(vector<vector<int>>& result,vector<int> &candidates,int& csize,int* v,int& cdep,int& vdep,int& target)
    {
        if(target==0)
        {
            vector<int> vals;
            for(int i=0;i<vdep;i++)
                vals.push_back(v[i]);
            result.push_back(vals);
            return;
        }
        if(cdep==csize || target<candidates[cdep]) return;
        
        int dup=target/candidates[cdep];
        for(int i=0;i<=dup;i++)
        {
            //add to v
            for(int j=0;j<i;j++) v[vdep+j]=candidates[cdep];
            //search next candidate
            target=target-i*candidates[cdep];
            cdep=cdep+1;
            vdep=vdep+i;
            dfs(result,candidates,csize,v,cdep,vdep,target);
            vdep=vdep-i;
            cdep=cdep-1;
            target=target+i*candidates[cdep];
        }
    }
}; 
bubuko.com,布布扣

Combination Sum,布布扣,bubuko.com

Combination Sum

原文:http://www.cnblogs.com/erictanghu/p/3759348.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!