Leetcode-Combination Sum(39,40,216)

Combination Sum(39,40,216)

Given a set of candidate numbers (C) (without duplicates) 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.
  • 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]
]

Subscribe to see which companies asked this question.

public class Solution {
    public List<List<Integer>> combinationSum(int[] candidates, int target) {
        List<List<Integer>> list = new ArrayList<>();
        Arrays.sort(candidates);
        backtrack(list, new ArrayList<>(), candidates, target, 0);
        return list; 
    }
    
    private void backtrack(List<List<Integer>> list,List<Integer> tmpList,int[] nums, int remain, int start ){
        if(remain < 0) return;
        else if(remain == 0) list.add(new ArrayList<>(tmpList));
        else{
           for(int i=start;i<nums.length;i++){
               tmpList.add(nums[i]);
               backtrack(list, tmpList, nums, remain-nums[i], i);// not i + 1 because we can reuse same elements
               tmpList.remove(tmpList.size()-1);
            
            } 
        }
        
    }
    
}

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.
  • 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]
]

Subscribe to see which companies asked this question.

public class Solution {
    public List<List<Integer>> combinationSum2(int[] candidates, int target) {
        List<List<Integer>> list = new ArrayList<>();
        Arrays.sort(candidates);
        backtrack(list, new ArrayList<>(), candidates, target, 0);
        return list;
    }

    private void backtrack(List<List<Integer>> list, List<Integer> tempList, int [] nums, int remain, int start){
        if(remain < 0) return;
        else if(remain == 0) list.add(new ArrayList<>(tempList));
        else{
            for(int i = start; i < nums.length; i++){
                if(i > start && nums[i] == nums[i-1]) continue; // skip duplicates
                tempList.add(nums[i]);
                backtrack(list, tempList, nums, remain - nums[i], i + 1);
                tempList.remove(tempList.size() - 1); 
            }
        }
    } 
}

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.

*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.

Subscribe to see which companies asked this question.

Show Tags

Show Similar Problems

public class Solution {
    public List<List<Integer>> combinationSum3(int k, int n) {
        List<List<Integer>> list = new ArrayList<>();
        //Arrays.sort(); arrays=[1,2,3,4,5,6,7,8,9]
        backtrack(list,new ArrayList<Integer>(),k,1,n);
        return list;
    }
    
    private void backtrack(List<List<Integer>> list,List<Integer> tmpList,int k,int start,int n){
        if(tmpList.size()==k &&n==0){
            List<Integer> li = new ArrayList<Integer>(tmpList);
            list.add(li);
            return;
        }
        for(int i=start;i<=9;i++){
            tmpList.add(i);
            backtrack(list,tmpList,k,i+1,n-i);
            tmpList.remove(tmpList.size()-1);
        }
    }
    
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末冲泥,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖百匆,帶你破解...
    沈念sama閱讀 211,348評(píng)論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件暇屋,死亡現(xiàn)場(chǎng)離奇詭異率碾,居然都是意外死亡屋彪,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,122評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門(mén)畜挥,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)蟹但,“玉大人,你說(shuō)我怎么就攤上這事华糖÷笙颍” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 156,936評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵客叉,是天一觀的道長(zhǎng)诵竭。 經(jīng)常有香客問(wèn)我,道長(zhǎng)兼搏,這世上最難降的妖魔是什么卵慰? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,427評(píng)論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮佛呻,結(jié)果婚禮上裳朋,老公的妹妹穿的比我還像新娘。我一直安慰自己吓著,他們只是感情好鲤嫡,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,467評(píng)論 6 385
  • 文/花漫 我一把揭開(kāi)白布绑莺。 她就那樣靜靜地躺著泛范,像睡著了一般。 火紅的嫁衣襯著肌膚如雪紊撕。 梳的紋絲不亂的頭發(fā)上罢荡,一...
    開(kāi)封第一講書(shū)人閱讀 49,785評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音对扶,去河邊找鬼区赵。 笑死,一個(gè)胖子當(dāng)著我的面吹牛浪南,可吹牛的內(nèi)容都是我干的笼才。 我是一名探鬼主播,決...
    沈念sama閱讀 38,931評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼络凿,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼骡送!你這毒婦竟也來(lái)了昂羡?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 37,696評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤摔踱,失蹤者是張志新(化名)和其女友劉穎篮愉,沒(méi)想到半個(gè)月后腐芍,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,141評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡试躏,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,483評(píng)論 2 327
  • 正文 我和宋清朗相戀三年猪勇,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片颠蕴。...
    茶點(diǎn)故事閱讀 38,625評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡泣刹,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出裁替,到底是詐尸還是另有隱情项玛,我是刑警寧澤,帶...
    沈念sama閱讀 34,291評(píng)論 4 329
  • 正文 年R本政府宣布弱判,位于F島的核電站襟沮,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏昌腰。R本人自食惡果不足惜开伏,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,892評(píng)論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望遭商。 院中可真熱鬧固灵,春花似錦、人聲如沸劫流。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,741評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)祠汇。三九已至仍秤,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間可很,已是汗流浹背诗力。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,977評(píng)論 1 265
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留我抠,地道東北人苇本。 一個(gè)月前我還...
    沈念sama閱讀 46,324評(píng)論 2 360
  • 正文 我出身青樓袜茧,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親瓣窄。 傳聞我的和親對(duì)象是個(gè)殘疾皇子笛厦,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,492評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容