#include <bits/stdc++.h> using namespace std; map<int,int> MAP; queue<int> Q; vector<int> V; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int N,a,d; long long s; cin>>N; for(int i=0;i<N;i++){ cin>>a; if(!MAP[a]){ Q.push(a); } MAP[a]++; } while(!Q.empty()){ a=Q.front(); Q.pop(); V.push_back(MAP[a]); } sort(V.begin(),V.end()); d=V.size(); int ind1,ind2,x; for(int i=1;i<=N;i++){ ind1=0; ind2=d-1; while(ind1<=ind2){ x=(ind1+ind2)/2; if(V[x]>=i){ ind2=x-1; }else ind1=x+1; } s=0; for(int j=ind1;j<d;j++){ s+=V[j]/i; } cout<<s*i<<' '; } //cout<<s; 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 | #include <bits/stdc++.h> using namespace std; map<int,int> MAP; queue<int> Q; vector<int> V; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int N,a,d; long long s; cin>>N; for(int i=0;i<N;i++){ cin>>a; if(!MAP[a]){ Q.push(a); } MAP[a]++; } while(!Q.empty()){ a=Q.front(); Q.pop(); V.push_back(MAP[a]); } sort(V.begin(),V.end()); d=V.size(); int ind1,ind2,x; for(int i=1;i<=N;i++){ ind1=0; ind2=d-1; while(ind1<=ind2){ x=(ind1+ind2)/2; if(V[x]>=i){ ind2=x-1; }else ind1=x+1; } s=0; for(int j=ind1;j<d;j++){ s+=V[j]/i; } cout<<s*i<<' '; } //cout<<s; return 0;} |