#include <bits/stdc++.h>
using namespace std;
int n;
vector<int> inverse(const vector<int> &v) {
vector<int> res(n, 0);
for (int i = 0; i < n; ++i)
++res[v[i]];
return res;
}
int partition(vector<int> &cnt) {
int i = 0, j = n - 1;
int parts = 0;
while (i <= j) {
++parts;
int sz = cnt[j] - 1;
while (i < j && cnt[i] <= sz)
sz -= cnt[i++];
cnt[i] -= sz;
cnt[j--] = 0;
}
return parts;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n;
vector<int> v(n);
for (int &i : v) {
cin >> i;
--i;
}
vector<int> cnt = inverse(v);
sort(cnt.begin(), cnt.end());
cout << partition(cnt) << '\n';
}
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 | #include <bits/stdc++.h> using namespace std; int n; vector<int> inverse(const vector<int> &v) { vector<int> res(n, 0); for (int i = 0; i < n; ++i) ++res[v[i]]; return res; } int partition(vector<int> &cnt) { int i = 0, j = n - 1; int parts = 0; while (i <= j) { ++parts; int sz = cnt[j] - 1; while (i < j && cnt[i] <= sz) sz -= cnt[i++]; cnt[i] -= sz; cnt[j--] = 0; } return parts; } int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); cin >> n; vector<int> v(n); for (int &i : v) { cin >> i; --i; } vector<int> cnt = inverse(v); sort(cnt.begin(), cnt.end()); cout << partition(cnt) << '\n'; } |
English