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
#include <iostream>
#include <map>

using namespace std;

map<int, int> m;

int main() {
    ios::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);

    int n, v = 0;
    cin >> n;

    for(int x, i = 0; i < n; i++) {
        cin >> x;
        m[x]++;

        v = max(v, m[x]);
    }

    for(int c = 0, i = 1; i <= n; i++) {
        if(i <= v) {
            for(auto k : m) {
                int num = k.second;
                if(num >= i) c += (i * (num / i));
            }
        }

        cout << c << ' ';
        c = 0;
    }
}