#include<bits/stdc++.h> using namespace std; int32_t main(){ ios::sync_with_stdio(false); int n,k,j; cin >> n >> k; vector<int> tab(n); for(int i=0;i<n;i++) cin >> tab[i]; sort(tab.begin(), tab.end()); reverse(tab.begin(), tab.end()); for(j=k-1; j<n && tab[k-1] == tab[j]; j++){} cout<<j<<"\n"; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #include<bits/stdc++.h> using namespace std; int32_t main(){ ios::sync_with_stdio(false); int n,k,j; cin >> n >> k; vector<int> tab(n); for(int i=0;i<n;i++) cin >> tab[i]; sort(tab.begin(), tab.end()); reverse(tab.begin(), tab.end()); for(j=k-1; j<n && tab[k-1] == tab[j]; j++){} cout<<j<<"\n"; } |