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
#include <bits/stdc++.h>
using namespace std;

const int N = 5e5 + 5;

int ile[N];

int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);

    int n;
    cin >> n;

    for(int i = 1; i <= n; i++) {
        int a;
        cin >> a;
        ile[a]++;
    }

    sort(ile + 1, ile + n + 1);

    deque <int> q;

    for(int i = 1; i <= n; i++){
        if(ile[i] == 0) 
            continue;
        q.push_back(ile[i]);
    }

    int odp = 0;

    while(!q.empty()) {
        int x = q.back();
        int wszystkie = x;
        q.pop_back();
        odp++;

        while(!q.empty() && wszystkie + q.front() < x * 2) {
            wszystkie += q.front();
            q.pop_front();
        }

        if(!q.empty()) {
            int pierwszy = q.front();
            q.pop_front();
            pierwszy -= x * 2 - wszystkie - 1;
            q.push_front(pierwszy);
        }
    }

    cout << odp << "\n";
}