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
#include<bits/stdc++.h>
using namespace std;
constexpr int MAXN = 5e5+2;
int ile[MAXN];

int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    int n;
    cin >> n;
    int maks = 0;
    int odp = 0;
    for(int i = 0; i < n; ++i) {
        int x;
        cin >> x;
        ile[x]++;
    }
    deque<int> dys;
    for(int val = MAXN-1; val > 0;  --val) if(ile[val]) dys.push_back(ile[val]);
    sort(dys.begin(), dys.end());
    while(dys.size()) {
        int ile = dys.back()-1;
        dys.pop_back();
        while(dys.size() && ile) {
            if(ile >= dys.front()) {
                ile -= dys.front();
                dys.pop_front();
            }
            else {
                int k = dys.front();
                dys.pop_front();
                dys.push_front(k-ile);
                ile = 0;
            }
        }
        odp++;
    }
    cout << odp;
}