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

priority_queue <int> q;
map <int,int> m;
int n;

int main(){
    cin >> n;
    
    for(int i = 0;i < n;i++){
        int c;
        cin >> c;
        m[c]++;
    }
    for(auto t : m){
        q.push(t.second);
    }
    int wynik = 0;
    while(n > 0){
        wynik++;
        n -= q.top()*2-1;
        q.pop();
    }
    cout << wynik << "\n";
    
    return 0;
}