#include<bits/stdc++.h>
using namespace std;
/*
*/
# define int int64_t
const int64_t mod = 1e9+7;
const int maxn = 1e6+10;
int a[maxn];
map<int, int> cnt;
int ans[maxn];
int n;
void tc()
{
cin >> n;
for (int i = 1; i <= n; i++)
{
cin >> a[i];
int v = a[i];
cnt[v]++;
}
for (auto it = cnt.begin(); it != cnt.end(); it++)
{
int zn = it->first;
int c = it->second;
for (int k = 1; k <= c; k++)
{
ans[k] += (c/k)*k;
}
}
for (int i = 1; i <= n; i++)
{
cout << ans[i] << " ";
}
cout << endl;
}
int32_t main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
tc(); return 0;
int T; cin >> T;
while (T--) tc();
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 | #include<bits/stdc++.h> using namespace std; /* */ # define int int64_t const int64_t mod = 1e9+7; const int maxn = 1e6+10; int a[maxn]; map<int, int> cnt; int ans[maxn]; int n; void tc() { cin >> n; for (int i = 1; i <= n; i++) { cin >> a[i]; int v = a[i]; cnt[v]++; } for (auto it = cnt.begin(); it != cnt.end(); it++) { int zn = it->first; int c = it->second; for (int k = 1; k <= c; k++) { ans[k] += (c/k)*k; } } for (int i = 1; i <= n; i++) { cout << ans[i] << " "; } cout << endl; } int32_t main() { ios_base::sync_with_stdio(false); cin.tie(0); tc(); return 0; int T; cin >> T; while (T--) tc(); return 0; } |
English