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

int main() {

    std::map<int, int> miasta;


    int n;
    std::cin >> n;

    std::vector<int> tab(300000,0);

    int licz = 0;
    for(int i = 0; i < n; i++){
        int next;
    	std::cin >> next;
        if(miasta.contains(next)){
            tab.at(miasta[next]) = tab.at(miasta[next]) + 1;
        } else{
            miasta[next] = licz;
            tab.at(licz) = 1;
            licz++;
        }
    }

    std::sort(tab.begin(), tab.end(), std::greater<int>());

    for(int i = 0; i < n; i++){
        int liczbaChetnych = i+1;
        if(liczbaChetnych==1){
            std::cout << n << " ";
        } else {
            int sum = 0;
            for(int j = 0; j < n; j++){
                if(tab.at(j) >= liczbaChetnych){
                    sum += tab.at(j) - (tab.at(j) % liczbaChetnych);
                } else {
                    break;
                }
            }
            std::cout << sum << " ";
        }
    }
    return 0;
}