首页 > 代码库 > 【LeetCode】040. Combination Sum II
【LeetCode】040. 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.
- 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] ]
题解:
Solution 1 (TLE)
class Solution { public: void dfs(vector<vector<int>>& vv, vector<int>& v, vector<int> candidates, int target, int sum, vector<int>& visited) { if(sum == target) { vector<int>* tmp = new vector<int>; *tmp = v; sort((*tmp).begin(), (*tmp).end()); if(find(vv.begin(), vv.end(), *tmp) == vv.end()) vv.push_back(*tmp); delete tmp; return; } if(sum > target) return; for(int i=0; i<candidates.size(); ++i) { if(visited[i] != 0) continue; v.push_back(candidates[i]); visited[i] = 1; dfs(vv, v, candidates, target, sum+candidates[i], visited); v.pop_back(); visited[i] = 0; } } vector<vector<int>> combinationSum2(vector<int>& candidates, int target) { vector<vector<int>> vv; vector<int> v; vector<int> visited(candidates.size(),0); dfs(vv, v, candidates, target, 0, visited); return vv; } };
Solution 1 中即使i从level开始遍历,也无法accepted,加入stop后才勉强通过,即Solution 2
Solution 2 (almost TLE but not 579ms)
class Solution { public: void dfs(vector<vector<int>>& vv, vector<int>& v, vector<int> candidates, int target, int sum, vector<int>& visited, int stop,int level) { if(sum == target) { vector<int>* tmp = new vector<int>; *tmp = v; sort((*tmp).begin(), (*tmp).end()); if(find(vv.begin(), vv.end(), *tmp) == vv.end()) vv.push_back(*tmp); delete tmp; return; } if(sum > target) {stop = 1;return;} for(int i=level; i<candidates.size(); ++i) { if(visited[i] != 0) continue; v.push_back(candidates[i]); visited[i] = 1; dfs(vv, v, candidates, target, sum+candidates[i], visited, stop, level+1); if(stop == 1) {stop = 0;break;} v.pop_back(); visited[i] = 0; } } vector<vector<int>> combinationSum2(vector<int>& candidates, int target) { vector<vector<int>> vv; vector<int> v; vector<int> visited(candidates.size(),0); sort(candidates.begin(), candidates.end()); dfs(vv, v, candidates, target, 0, visited, 0, 0); return vv; } };
Solution 3 ()
class Solution { public: void dfs(vector<vector<int>>& vv, vector<int>& v, vector<int> candidates, int target, vector<int>& visited, int stop,int level) { if(target == 0) { vector<int>* tmp = new vector<int>; *tmp = v; sort((*tmp).begin(), (*tmp).end()); if(find(vv.begin(), vv.end(), *tmp) == vv.end()) vv.push_back(*tmp); delete tmp; return; } if(target<0) {stop = 1;return;} for(int i=level; i<candidates.size(); ++i) { if(visited[i] != 0) continue; v.push_back(candidates[i]); visited[i] = 1; dfs(vv, v, candidates, target-candidates[i], visited, stop,level+1); if(stop == 1) {stop = 0;break;} v.pop_back(); visited[i] = 0; } } vector<vector<int>> combinationSum2(vector<int>& candidates, int target) { vector<vector<int>> vv; vector<int> v; vector<int> visited(candidates.size(),0); sort(candidates.begin(), candidates.end()); dfs(vv, v, candidates, target, visited, 0,0); return vv; } };
Solution 4
【LeetCode】040. Combination Sum II
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。