LeetCode中国,https://leetcode-cn.com/problems/combination-sum-ii/。
给定一个数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合。
candidates 中的每个数字在每个组合中只能使用一次。
说明:
输入: candidates = [10,1,2,7,6,1,5], target = 8,
所求解集为:
[
[1, 7],
[1, 2, 5],
[2, 6],
[1, 1, 6]
]
输入: candidates = [2,5,2,1,2], target = 5,
所求解集为:
[
[1,2,2],
[5]
]
LeetCode 给出本题难度中等。
本题是 LeetCode 编号 39 题目的升级版,这个题目的题解可以参考,https://blog.csdn.net/justidle/article/details/105316988。只需要增加剪枝操作即可。
我们可以通过排序来解决。
和题号 39 相比,下一次搜索为本次搜索位置加一。
class Solution {
public:
vector> ans;//
vector path;
vector> combinationSum2(vector& candidates, int target) {
sort(candidates.begin(), candidates.end());
dfs(candidates, 0, 0, target);
return ans;
}
void dfs(vector& candidates, int sum, int pos, int target) {
if (sum==target) {
ans.push_back(path);
return;
} else if (sum>target) {
return;
}
int val;
for (int i=pos; ipos && candidates[i]==candidates[i-1]) {
continue;
}
val = candidates[i];
if (sum+val<=target) {
path.push_back(val);
dfs(candidates, sum+val, i+1, target);
path.pop_back();
}
}
}
};