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

using namespace std;


int main()
{
	ios_base::sync_with_stdio(false);
	
	
	int a;
	cin>>a;
	unordered_map<int,int>m;
	for(int z=0;z<a;z++)
	{
		int b;
		cin>>b;
		if(m.count(b)==0)
		{
			m.insert({b,0});
		}
		m[b]++;
	}
	vector<int>v;
	
	for(int z=1;z<=a;z++)
	{
		if(m.count(z)!=0)
		{
			v.push_back(m[z]);
		}
	}
	sort(v.begin(),v.end());
	int wyn=0;
	int sum=0;
	for(int z=v.size()-1;z>=0;z--)
	{
		wyn++;
		sum+=v[z]*2-1;
		if(sum>=a)break;
	}
	cout<<wyn;
	return 0;
}