-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathreduce_array_size_to_half.cpp
64 lines (57 loc) · 1.71 KB
/
reduce_array_size_to_half.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
class Solution {
// struct Comp {
// bool operator()(const pair<int, int> &l, const pair<int, int> &r){
// if(l.first != r.first) {
// return l.first < r.first;
// }
// return l.second < r.second;
// }
// };
public:
int minSetSize(vector<int>& arr) {
unordered_map<int, int> count;
for(auto ele : arr) {
count[ele]++;
}
priority_queue<pair<int,int>, vector<pair<int, int>>> Q; //we dont care about the elements here, so we just create a default max heap
for(auto &[k,v] : count) {
Q.emplace(v, k);
}
int acceptable = arr.size() / 2; //k
int currSize = 0, setSize = 0;
while(!Q.empty()) {
int frequency = Q.top().first;
setSize++;
currSize += frequency;
if(currSize >= acceptable)
return setSize;
Q.pop();
}
return -1;
}
};
//since I dont care about the actual values in array, it doesnt make sense to insert them in PQ.
class Solution {
public:
int minSetSize(vector<int>& arr) {
unordered_map<int, int> count;
for(auto ele : arr) {
count[ele]++;
}
priority_queue<int> Q;
for(auto &[k,v] : count) {
Q.emplace(v);
}
int acceptable = arr.size() / 2; //k
int currSize = 0, setSize = 0;
while(!Q.empty()) {
int frequency = Q.top();
setSize++;
currSize += frequency;
if(currSize >= acceptable)
return setSize;
Q.pop();
}
return -1;
}
};