// #include <stdio.h> // #include <map> // #include <vector> // #include <iostream> #include <bits/stdc++.h> using namespace std; int n; map<int, int> M; int main() { scanf("%d", &n); for (int i = 0; i < n; i++) { int res; scanf("%d", &res); M[res]++; } vector <int> v; for (const auto &x : M) v.push_back(x.second); sort(v.begin(), v.end(), greater<int>()); int cnt = 0; while (v[cnt] <= n / 2) { //najwiekszy element mniejszy od polowy ciagu n -= v[cnt]; cnt++; } //najwiekszy element wiekszy od polowy ciagu printf("%d\n", cnt + 1); 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 | // #include <stdio.h> // #include <map> // #include <vector> // #include <iostream> #include <bits/stdc++.h> using namespace std; int n; map<int, int> M; int main() { scanf("%d", &n); for (int i = 0; i < n; i++) { int res; scanf("%d", &res); M[res]++; } vector <int> v; for (const auto &x : M) v.push_back(x.second); sort(v.begin(), v.end(), greater<int>()); int cnt = 0; while (v[cnt] <= n / 2) { //najwiekszy element mniejszy od polowy ciagu n -= v[cnt]; cnt++; } //najwiekszy element wiekszy od polowy ciagu printf("%d\n", cnt + 1); return 0; } |