#include <bits/stdc++.h> #define LL long long #define endl '\n' using namespace std; map<int,int> ez,ez2; int main() { std::ios_base::sync_with_stdio(0); cout.tie(0); cin.tie(0); int n,a,f=0; cin>>n; for(int i=0;i<n;i++) { cin>>a; ez[a]++; } for(auto i:ez) ez2[i.second]++; //for(auto i:ez2) cout<<i.first<<" "<<i.second<<endl; cout<<n<<" "; for(int i=2;i<=n;i++) { if(f) cout<<0<<" "; else { int w=0; for(auto xd=ez2.end();xd!=ez2.begin();) { xd--; if((*xd).first<i) break; w+=(*xd).second*((*xd).first-(*xd).first%i); } cout<<w<<" "; if(w==0) f=1; } } }
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 | #include <bits/stdc++.h> #define LL long long #define endl '\n' using namespace std; map<int,int> ez,ez2; int main() { std::ios_base::sync_with_stdio(0); cout.tie(0); cin.tie(0); int n,a,f=0; cin>>n; for(int i=0;i<n;i++) { cin>>a; ez[a]++; } for(auto i:ez) ez2[i.second]++; //for(auto i:ez2) cout<<i.first<<" "<<i.second<<endl; cout<<n<<" "; for(int i=2;i<=n;i++) { if(f) cout<<0<<" "; else { int w=0; for(auto xd=ez2.end();xd!=ez2.begin();) { xd--; if((*xd).first<i) break; w+=(*xd).second*((*xd).first-(*xd).first%i); } cout<<w<<" "; if(w==0) f=1; } } } |