#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
int main(){
ios::sync_with_stdio(0); cin.tie(0);
int n;
cin >> n;
vector<LL> v(n);
map<LL, LL> temp;
for(auto& e : v){
cin >>e;
temp[e]++;
}
vector<LL> krot;
for(auto it = temp.begin(); it != temp.end(); it++){
krot.push_back(it->second);
}
sort(krot.begin(), krot.end(), greater<LL>());
LL wynik = 0;
for(int i = 0; i < krot.size() && krot[i] != 0; i++){
int sum = 0;
for(int j = krot.size() - 1; j > i; j--){
sum += krot[j];
if(sum >= krot[i]){
krot[j] = sum - (krot[i] - 1);
break;
}else{
krot[j] = 0;
}
}
wynik++;
}
cout << wynik;
return 0;
}
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 | #include<bits/stdc++.h> using namespace std; typedef long long LL; int main(){ ios::sync_with_stdio(0); cin.tie(0); int n; cin >> n; vector<LL> v(n); map<LL, LL> temp; for(auto& e : v){ cin >>e; temp[e]++; } vector<LL> krot; for(auto it = temp.begin(); it != temp.end(); it++){ krot.push_back(it->second); } sort(krot.begin(), krot.end(), greater<LL>()); LL wynik = 0; for(int i = 0; i < krot.size() && krot[i] != 0; i++){ int sum = 0; for(int j = krot.size() - 1; j > i; j--){ sum += krot[j]; if(sum >= krot[i]){ krot[j] = sum - (krot[i] - 1); break; }else{ krot[j] = 0; } } wynik++; } cout << wynik; return 0; } |
English