#include<bits/stdc++.h> using namespace std; typedef long double ld; typedef long long ll; #define rep(a, b) for(int a = 0; a < (b); ++a) #define st first #define nd second #define pb push_back #define all(a) a.begin(), a.end() const int LIM=3e5+7; vector<int>V[LIM]; int main() { ios_base::sync_with_stdio(0); cin.tie(0); int n; cin >> n; map<int,int>mp; rep(i, n) { int x; cin >> x; ++mp[x]; } for(auto i : mp) { for(int j=1; j<=i.nd; ++j) V[j].pb(i.nd); } for(int i=1; i<=n; ++i) { int ans=0; for(auto j : V[i]) ans+=(j/i)*i; cout << ans << " "; } cout << '\n'; }
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 | #include<bits/stdc++.h> using namespace std; typedef long double ld; typedef long long ll; #define rep(a, b) for(int a = 0; a < (b); ++a) #define st first #define nd second #define pb push_back #define all(a) a.begin(), a.end() const int LIM=3e5+7; vector<int>V[LIM]; int main() { ios_base::sync_with_stdio(0); cin.tie(0); int n; cin >> n; map<int,int>mp; rep(i, n) { int x; cin >> x; ++mp[x]; } for(auto i : mp) { for(int j=1; j<=i.nd; ++j) V[j].pb(i.nd); } for(int i=1; i<=n; ++i) { int ans=0; for(auto j : V[i]) ans+=(j/i)*i; cout << ans << " "; } cout << '\n'; } |