#include <iostream> #include <vector> #include <algorithm> int main() { std::ios_base::sync_with_stdio(0); std::cin.tie(0); std::cin.tie(0); int N; std::cin >> N; std::vector<int> cnt(N); for(int i = 0; i < N; i++) { int x; std::cin >> x; cnt[x - 1]++; } std::sort(cnt.begin(), cnt.end()); int result = 0, left = N, used = 0; while(left > (used - result)) { if(cnt.size() == 0) { break; } int x = cnt.back(); if(x == 0) { break; } cnt.pop_back(); left -= x; used += x; result++; } std::cout << result << '\n'; 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 41 | #include <iostream> #include <vector> #include <algorithm> int main() { std::ios_base::sync_with_stdio(0); std::cin.tie(0); std::cin.tie(0); int N; std::cin >> N; std::vector<int> cnt(N); for(int i = 0; i < N; i++) { int x; std::cin >> x; cnt[x - 1]++; } std::sort(cnt.begin(), cnt.end()); int result = 0, left = N, used = 0; while(left > (used - result)) { if(cnt.size() == 0) { break; } int x = cnt.back(); if(x == 0) { break; } cnt.pop_back(); left -= x; used += x; result++; } std::cout << result << '\n'; return 0; } |