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

using namespace std;

int n, tab[500001], p[500001], odp=1, pp, suf, po, ko;

bool mal(int x, int y){
    return x>y;
}

int main(){
    p[0]=1;
    ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
    cin>>n;
    for(int i=0; i<n; ++i){
        cin>>tab[i];
    }
    sort(tab, tab+n);
    for(int i=1; i<n; ++i){
        if(tab[i]==tab[i-1])
            p[pp]+=1;
        else{
            pp+=1;
            p[pp]++;
        }
    }
    ko=pp;
    sort(p, p+pp+1, mal);
    if(p[0]>=((n/2)+1)){
        cout<<"1";
        return 0;
    }
    if(pp == 1){
        cout<<"2";
        return 0;
    }
    while(po < ko){
        if(p[po] > (suf/2)+1){
            suf+=p[ko];
        }
        if(p[po] == (suf/2)+1){
            odp++;
            po++;
            suf=0;
        }
        if(p[po] < (suf/2)+1){
            suf-=p[po]+1;
            odp++;
            po++;
        }
        ko--;
        //cout<<odp<<" "<<po<<" "<<ko<<'\n';
    }
    cout<<odp;

    return 0;
}