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
#include<cstdio>
#include<map>
#include<vector>

using namespace std;

int main() {
    int stampCount;
    scanf("%d\n", &stampCount);

    map<long, int> cityCounts;

    for (int i = 0; i < stampCount; i++) {
        long city;
        scanf("%ld", &city);

        cityCounts[city]++;
    }

    vector<int> stampsGiven(stampCount, 0);

    for (map<long, int>::iterator it = cityCounts.begin(); it != cityCounts.end(); ++it) {
        int count = it->second;
        for (int i = count; i > 0; i--) {
            stampsGiven[i - 1] += (count - (count % i));
        }
    }

    for (int i = 0; i < stampCount - 1; i++) {
        printf("%d ", stampsGiven[i]);
    }

    printf("%d\n", stampsGiven[stampCount - 1]);
    
    return 0;
}