#include <bits/stdc++.h>
using namespace std;
map<int, int> amounts;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
int amount;
cin >> amount;
for (int i = 0; i < amount; ++i)
{
int city;
cin >> city;
amounts[city] += 1;
}
for (int i = 1; i <= amount; ++i)
{
int sum = 0;
vector<int> toRemove;
for (auto value : amounts)
{
int result = value.second / i * i;
sum += result;
if (result == 0)
{
toRemove.push_back(value.first);
}
}
for (int value : toRemove)
{
amounts.erase(value);
}
cout << sum << ' ';
}
cout << '\n';
}
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 | #include <bits/stdc++.h> using namespace std; map<int, int> amounts; int main() { ios_base::sync_with_stdio(false); cin.tie(0); int amount; cin >> amount; for (int i = 0; i < amount; ++i) { int city; cin >> city; amounts[city] += 1; } for (int i = 1; i <= amount; ++i) { int sum = 0; vector<int> toRemove; for (auto value : amounts) { int result = value.second / i * i; sum += result; if (result == 0) { toRemove.push_back(value.first); } } for (int value : toRemove) { amounts.erase(value); } cout << sum << ' '; } cout << '\n'; } |
English