#include <bits/stdc++.h> using namespace std; int main(){ int n, k; cin >> n >> k; vector <int> punkty(n); for(int i = 0; i<n; ++i){ cin >> punkty[i]; } if(k >= n){ cout << n << "\n"; return 0; } sort(punkty.begin(), punkty.begin()+n, greater<int>()); int i; for(i = k-1; punkty[i]==punkty[k-1] && i<n; ++i); cout << i << "\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 | #include <bits/stdc++.h> using namespace std; int main(){ int n, k; cin >> n >> k; vector <int> punkty(n); for(int i = 0; i<n; ++i){ cin >> punkty[i]; } if(k >= n){ cout << n << "\n"; return 0; } sort(punkty.begin(), punkty.begin()+n, greater<int>()); int i; for(i = k-1; punkty[i]==punkty[k-1] && i<n; ++i); cout << i << "\n"; } |