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

using namespace std;
vector<int> tab; // ilość liczba
int licz[500009];
int wyn, t;

int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    int n, x;
    cin >> n;
    for (int i = 0; i < n; i++) {
        cin >> x;
        licz[x]++;
    }
    if (n == 1) {
        cout << 1;
        return 0;
    }
    for (int i = 0; i < 500009; i++) {
        if (licz[i] != 0) {
            tab.push_back(licz[i]);
        }
    }
    int l=0;
    int p=tab.size()-1;
    sort(tab.begin(), tab.end());
    for (int i = 0; i < n; i++) {
        t = tab[p]- 1;
        p--;
        wyn++;
        if (t != 0) {
            while (t != 0) {
                if (l>p) {
                    cout << wyn;
                    return 0;
                }
                if (tab[l] < t) { 
                    t -= tab[l];
                    l++;
                } else if (tab[l] == t) { 
                    t = 0;
                    l++;
                } else {
                    tab[l] -= t;
                    t = 0;
                }
                if (l>p) {
                    cout << wyn;
                    return 0;
                }
            }
        }
        if (l>p) {
            cout << wyn;
            return 0;
        }
    }
    return 0;
}