leetcode-----40. 组合总和 II
Posted 景云
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-----40. 组合总和 II相关的知识,希望对你有一定的参考价值。
代码(dfs)
class Solution {
public:
vector<vector<int>> ans;
vector<int> path;
vector<vector<int>> combinationSum2(vector<int>& candidates, int target) {
sort(candidates.begin(), candidates.end());
dfs(candidates, 0, target);
return ans;
}
void dfs(vector<int> &cs, int u, int target) {
if (target == 0) {
ans.push_back(path);
return;
}
if (u == cs.size()) return;
int k = u + 1;
while (k < cs.size() && cs[k] == cs[u]) k++;
int cnt = k - u;
for (int i = 0; cs[u] * i <= target && i <= cnt; ++i) {
dfs(cs, k, target - cs[u] * i);
path.push_back(cs[u]);
}
for (int i = 0; cs[u] * i <= target && i <= cnt; ++i) {
path.pop_back();
}
}
};
以上是关于leetcode-----40. 组合总和 II的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 40. 组合总和 II(Combination Sum II)