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
#include <iostream>
#include <algorithm>

using namespace std;

const int zakres=500001;
int t[zakres];

int main()
{
    int n, x;
    cin >> n;
    for (int i=0; i<n; i++){
        cin >> x;
        t[x]++;
    }
    sort(t, t+zakres);

    int a=zakres-1;
    int wynik=0;
    while(n>0){
        wynik++;
        n-=t[a];
        n-=(t[a]-1);
        a--;
    }
    cout << wynik;

    return 0;
}