-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path47.cpp
37 lines (36 loc) · 905 Bytes
/
47.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// dfs.cpp
class Solution {
int target;
void dfs(vector<pair<int, int>> &unused, vector<vector<int>> &res,
vector<int> &now) {
if (now.size() == target) {
res.push_back(now);
return;
}
for (auto &p : unused) {
if (p.second > 0) {
now.push_back(p.first);
--p.second;
dfs(unused, res, now);
++p.second;
now.pop_back();
}
}
}
public:
vector<vector<int>> permuteUnique(vector<int> &nums) {
target = nums.size();
unordered_map<int, int> hashmap;
for (auto num : nums)
++hashmap[num];
vector<pair<int, int>> arr(hashmap.begin(), hashmap.end());
sort(arr.begin(), arr.end(),
[](const pair<int, int> &a, const pair<int, int> &b) {
return a.first < b.first;
});
vector<vector<int>> res;
vector<int> now;
dfs(arr, res, now);
return res;
}
};