#include <iostream> #include <vector> #include<algorithm> #include <unordered_map> using namespace std; int main() { int liczbaznaczkow; cin >> liczbaznaczkow; vector<int> znaczki(liczbaznaczkow); unordered_map<int, int> wystapienia; for (int y = 0; y < liczbaznaczkow; y++) { cin >> znaczki[y]; wystapienia[znaczki[y]]++; } vector<int> counts; for (auto& para : wystapienia) { counts.push_back(para.second); } sort(counts.rbegin(), counts.rend()); for (int k = 1; k <= liczbaznaczkow; k++) { int ilosc = 0; for (int count : counts) { if (count >= k) { ilosc += count / k * k; } else { break; } } cout << ilosc << " "; } 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 | #include <iostream> #include <vector> #include<algorithm> #include <unordered_map> using namespace std; int main() { int liczbaznaczkow; cin >> liczbaznaczkow; vector<int> znaczki(liczbaznaczkow); unordered_map<int, int> wystapienia; for (int y = 0; y < liczbaznaczkow; y++) { cin >> znaczki[y]; wystapienia[znaczki[y]]++; } vector<int> counts; for (auto& para : wystapienia) { counts.push_back(para.second); } sort(counts.rbegin(), counts.rend()); for (int k = 1; k <= liczbaznaczkow; k++) { int ilosc = 0; for (int count : counts) { if (count >= k) { ilosc += count / k * k; } else { break; } } cout << ilosc << " "; } return 0; } |