#include <iostream>
#include <algorithm>
using namespace std;
int n;
int c[300001];
int d[300001];
int k,s;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
cin >> n;
for(int i = 0; i <n; i++)
cin>> c[i];
sort(c,c+n);
d[0] =1;
k=0;
for(int i = 1; i <n; i++)
{
if(c[i-1]==c[i])
{
d[k]++;
}
else{
k++;
d[k]++;
}
}
for(int i = 1; i <=n; i++)
{
s=0;
for(int j = 0; j <=k; j++)
{
s += d[j]/i;
}
cout << s*i << ' ';
}
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 | #include <iostream> #include <algorithm> using namespace std; int n; int c[300001]; int d[300001]; int k,s; int main() { ios_base::sync_with_stdio(false); cin.tie(0); cin >> n; for(int i = 0; i <n; i++) cin>> c[i]; sort(c,c+n); d[0] =1; k=0; for(int i = 1; i <n; i++) { if(c[i-1]==c[i]) { d[k]++; } else{ k++; d[k]++; } } for(int i = 1; i <=n; i++) { s=0; for(int j = 0; j <=k; j++) { s += d[j]/i; } cout << s*i << ' '; } return 0; } |
English