#include <iostream>
#include <vector>
#include <algorithm>
#include <fstream>
using namespace std;
#ifdef USE_FILE_CIN
ifstream input("kos.in");
#define cin input
#endif
int main() {
int playerCount, minTshirtCount;
vector<int> points;
cin >> playerCount >> minTshirtCount;
points.resize(playerCount);
for (int i = 0; i < playerCount; i++) {
cin >> points[i];
}
sort(points.begin(), points.end(), greater<int>());
int result = minTshirtCount;
while (result < playerCount && (points[result] == points[result - 1])) {
result ++;
}
cout << result;
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 | #include <iostream> #include <vector> #include <algorithm> #include <fstream> using namespace std; #ifdef USE_FILE_CIN ifstream input("kos.in"); #define cin input #endif int main() { int playerCount, minTshirtCount; vector<int> points; cin >> playerCount >> minTshirtCount; points.resize(playerCount); for (int i = 0; i < playerCount; i++) { cin >> points[i]; } sort(points.begin(), points.end(), greater<int>()); int result = minTshirtCount; while (result < playerCount && (points[result] == points[result - 1])) { result ++; } cout << result; return 0; } |
English