#include <bits/stdc++.h> using namespace std; int A[500001],B[500001], n; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin>>n; int k=1, t, s=0; for(int i=0, a; i<n; ++i){ cin>>a; if(A[a]==0){ A[a]=k; k++; } B[A[a]]++; } sort(B+1, B+k); t=k-1; while(s<n){ s+= 2*B[t]-1; --t; } cout<<k-t-1; return 0; }
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 | #include <bits/stdc++.h> using namespace std; int A[500001],B[500001], n; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin>>n; int k=1, t, s=0; for(int i=0, a; i<n; ++i){ cin>>a; if(A[a]==0){ A[a]=k; k++; } B[A[a]]++; } sort(B+1, B+k); t=k-1; while(s<n){ s+= 2*B[t]-1; --t; } cout<<k-t-1; return 0; } |