【LeetCode】40. Combination Sum II (2 solutions)
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, a1 ≤ a2 ≤ … ≤ 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]
解法一:
最直接的想法就是把所有子集都列出来,然后逐个计算和是否为target
但是考虑到空间复杂度,10个数的num数组就有210个子集,因此必须进行“剪枝”,去掉不可能的子集。
先对num进行排序。
在遍历子集的过程中:
(1)单个元素大于target,则后续元素无需扫描了,直接返回结果。
(2)单个子集元素和大于target,则不用加入当前的子集容器了。
(3)单个子集元素和等于target,加入结果数组。
class Solution {
public:
    vector<vector<int> > combinationSum2(vector<int> &num, int target) {
        vector<vector<int> > result;
        vector<vector<int> > subsets;
        vector<int> empty;
        subsets.push_back(empty);
        sort(num.begin(), num.end());
        for(int i = ; i < num.size();)
        {//for each number
            int count = ;
            int cur = num[i];
            if(cur > target)    //end
                return result;
            while(i < num.size() && num[i] == cur)
            {//repeat count
                i ++;
                count ++;
            }
            int size = subsets.size();    //orinigal size instead of calling size() function
            for(int j = ; j < size; j ++)
            {
                vector<int> sub = subsets[j];
                int tempCount = count;
                while(tempCount --)
                {
                    sub.push_back(cur);
                    int sum = accumulate(sub.begin(), sub.end(), );
                    if(sum == target)
                    {
                        result.push_back(sub);
                        subsets.push_back(sub);
                    }
                    else if(sum < target)
                        subsets.push_back(sub);
                }
            }
        }
        return result;
    }
};

解法二:递归回溯
需要注意的是:
1、在同一层递归树中,如果某元素已经处理并进入下一层递归,那么与该元素相同的值就应该跳过。否则将出现重复。
例如:1,1,2,3
如果第一个1已经处理并进入下一层递归1,2,3
那么第二个1就应该跳过,因为后续所有情况都已经被覆盖掉。
2、相同元素第一个进入下一层递归,而不是任意一个
例如:1,1,2,3
如果第一个1已经处理并进入下一层递归1,2,3,那么两个1是可以同时成为可行解的
而如果选择的是第二个1并进入下一层递归2,3,那么不会出现两个1的解了。
class Solution {
public:
    vector<vector<int> > combinationSum2(vector<int> &num, int target) {
        sort(num.begin(), num.end());
        vector<vector<int> > ret;
        vector<int> cur;
        Helper(ret, cur, num, target, );
        return ret;
    }
    void Helper(vector<vector<int> > &ret, vector<int> cur, vector<int> &num, int target, int position)
    {
        if(target == )
            ret.push_back(cur);
        else
        {
            for(int i = position; i < num.size() && num[i] <= target; i ++)
            {
                if(i != position && num[i] == num[i-])
                    continue;
                cur.push_back(num[i]);
                Helper(ret, cur, num, target-num[i], i+);
                cur.pop_back();
            }
        }
    }
};

【LeetCode】40. Combination Sum II (2 solutions)的更多相关文章
- 【LeetCode】40. Combination Sum II 解题报告(Python & C++)
		作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 方法一:DFS 方法二:回溯法 日期 题目地址:ht ... 
- 【一天一道LeetCode】#40. Combination Sum II
		一天一道LeetCode系列 (一)题目 Given a collection of candidate numbers (C) and a target number (T), find all u ... 
- 【LeetCode】040. Combination Sum II
		题目: Given a collection of candidate numbers (C) and a target number (T), find all unique combination ... 
- 【LeetCode】113. Path Sum II 解题报告(Python)
		[LeetCode]113. Path Sum II 解题报告(Python) 标签(空格分隔): LeetCode 作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fu ... 
- [Leetcode][Python]40: Combination Sum II
		# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com' 40: Combination Sum IIhttps://oj.leetco ... 
- 【LeetCode题意分析&解答】40. Combination Sum II
		Given a collection of candidate numbers (C) and a target number (T), find all unique combinations in ... 
- 【LeetCode】216. Combination Sum III
		Combination Sum III Find all possible combinations of k numbers that add up to a number n, given tha ... 
- LeetCode OJ 40. Combination Sum II
		Given a collection of candidate numbers (C) and a target number (T), find all unique combinations in ... 
- 【LeetCode】167. Two Sum II - Input array is sorted
		Difficulty:easy More:[目录]LeetCode Java实现 Description Given an array of integers that is already sor ... 
随机推荐
- 让QT/Embedded支持国际化
			让QT/Embedded支持国际化 环境配置: Qt/Embedded ,在主机和目标板上存放路径都为:/root/qt-embedded-free- Qt/X11 3.3 (主要用到其中的lupda ... 
- Spring与web MVC的整合——Spring的应用上下文管理
			问题1 如何让web容器加载你的web MVC框架 对于基于servlet的web容器来说,遵循的是servlet规范,入口配置文件是web.xml.这类web容器会在启动的时候会而且仅会加载如下三种 ... 
- Python for everyone chapter 1
			Chapter 1 10 试题 1. When Python is running in the interactive mode and displaying the chevron prompt ... 
- 数据库实例: STOREBOOK  >  表空间  >  编辑 表空间: USERS
			ylbtech-Oracle:数据库实例: STOREBOOK > 表空间 > 编辑 表空间: USERS 表空间 > 编辑 表空间: USERS 1. 一般信息返回顶部 ... 
- C++中List的用法
			Lists将元素按顺序储存在链表中. 与 向量(vectors)相比, 它允许快速的插入和删除,但是随机访问却比较慢. assign() 给list赋值 back() 返回最后一个元素 begin() ... 
- [转]DOM 中 Property 和 Attribute 的区别
			angular的文档: https://angular.io/guide/template-syntax#property-binding https://blog.csdn.net/sunq1982 ... 
- 【Nodejs】cheerio简单示例
			cheerio的API挺多,我也了解有限,欲知详情请参考 “通读cheerio API”. 下面就事论事聊聊它的基本使用. 比如说在某网页中有这么一段HTML: </tbody> < ... 
- shapefile文件的符号化问题
			我们都知道,ArcGIS的shp文件只以坐标形式保存地图数据,地图的显示方法则是存储都数据库或地图文件(mxd)中,这一点是深信不疑的. 如果我们打开ArcMap,新建一个普通的地图文件(使用标准的模 ... 
- Android Studio中安装Genymotion模拟器
			Genymotion的安装: Genymotion无疑是目前最快最好用的模拟器.官网下载地址:https://www.genymotion.com/ 进到官网却找不到免费下载地址了,都需要money, ... 
- ORACLE常用监控语句(未完待续)
			--查询日志的切换频率 select t1.RECID as srecid ,t2.RECID as erecid ,t1.FIRST_TIME as stime ... 
