#include <iostream> #include <algorithm> using namespace std; int x,i,s=0,k=0,o; string ciag,b; int main() { getline(cin,b); x=atoi(b.c_str()); int a[x]; getline(cin,ciag); for(i=0;i<ciag.length();i++) { b=""; while(ciag[i]!= ' ' && i<ciag.length()) { b+=ciag[i]; i++; } a[k]=atoi(b.c_str()); k++; } sort(a,a+x); for(i=0;i<x;i++) { while(a[i]==a[i+1] && i<x) { i++; } s++; } int n[s]; o=s; s=0; for(i=0; i<x ; i++) { k=1; while(a[i]==a[i+1] && i<x) { k++; i++; } n[s]=k; s++; } sort(n,n+o); i=0; k=0; while(i!=o) { s=0; while(n[o-1]>s && i!=o) { s+=n[i]; i++; } o--; k++; i--; } cout<< k << endl; 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 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 59 60 61 62 63 | #include <iostream> #include <algorithm> using namespace std; int x,i,s=0,k=0,o; string ciag,b; int main() { getline(cin,b); x=atoi(b.c_str()); int a[x]; getline(cin,ciag); for(i=0;i<ciag.length();i++) { b=""; while(ciag[i]!= ' ' && i<ciag.length()) { b+=ciag[i]; i++; } a[k]=atoi(b.c_str()); k++; } sort(a,a+x); for(i=0;i<x;i++) { while(a[i]==a[i+1] && i<x) { i++; } s++; } int n[s]; o=s; s=0; for(i=0; i<x ; i++) { k=1; while(a[i]==a[i+1] && i<x) { k++; i++; } n[s]=k; s++; } sort(n,n+o); i=0; k=0; while(i!=o) { s=0; while(n[o-1]>s && i!=o) { s+=n[i]; i++; } o--; k++; i--; } cout<< k << endl; return 0; } |