#include <bits/stdc++.h> using namespace std; #define fastio ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0) int n, k, ans; vector<int> a; int main(){ fastio; cin >> n >> k; a.resize(n+1); a[0] = INT_MAX; for(int i = 1; i <= n; i++) cin >> a[i]; sort(a.rbegin(), a.rend()); ans = k; for(int i = k+1; i <= n; i++) if(a[i] == a[k]) ans++; cout << ans; }
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; #define fastio ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0) int n, k, ans; vector<int> a; int main(){ fastio; cin >> n >> k; a.resize(n+1); a[0] = INT_MAX; for(int i = 1; i <= n; i++) cin >> a[i]; sort(a.rbegin(), a.rend()); ans = k; for(int i = k+1; i <= n; i++) if(a[i] == a[k]) ans++; cout << ans; } |