[InterviewBit] Subsets II

Subsets II

  • Time :
  • Space :
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
void helper(vector<vector<int>>& res, vector<pair<int,int>>& A, int p, vector<int>& now) {
if(p == A.size()) res.push_back(now);
else {
helper(res,A,p+1,now);
auto [n,c] = A[p];
for(int i = 0; i < c; i++) {
now.push_back(n);
helper(res,A,p+1,now);
}
while(!now.empty() and now.back() == n) now.pop_back();
}
}
vector<vector<int>> Solution::subsetsWithDup(vector<int> &A) {
unordered_map<int,int> freq;
for(auto a : A) freq[a]++;
vector<pair<int,int>> AA;
for(auto [k,v] : freq) AA.push_back({k,v});
sort(begin(AA), end(AA));
vector<vector<int>> res;
helper(res,AA,0,vector<int>() = {});
sort(begin(res),end(res));
return res;
}

Author: Song Hayoung
Link: https://songhayoung.github.io/2022/09/23/PS/interviewbit/subsets-ii/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.