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

constexpr int N = 5e5;
int cnt[N+9];

int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int n,a,odp=0;
    cin >> n;
    for (int x=1;x<=n;x++){
        cin >> a;
        cnt[a]++;
    }
    sort(cnt+1,cnt+n+1);
    int p=1;
    for (int x=n;x>=1;x--){
        if (cnt[x]==0)continue;
        int zost=cnt[x]-1; cnt[x]=0;odp++;
        while(zost>0 && p<x){
            int t=min(zost,cnt[p]);
            zost-=t;
            cnt[p]-=t;
            if (cnt[p]==0)p++;
        }
    }
    cout << odp << '\n';
    return 0;
}