#include<bits/stdc++.h> #define fi first #define se second using namespace std; const int N=2e3; int tab[N+10]; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n,k; cin>>n>>k; for(int i=1;i<=n;i++) cin>>tab[i]; sort(tab+1,tab+n+1); reverse(tab+1,tab+n+1); int ans; for(ans=k;ans<n && tab[ans+1]==tab[ans];ans++); cout<<ans<<"\n"; return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #include<bits/stdc++.h> #define fi first #define se second using namespace std; const int N=2e3; int tab[N+10]; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n,k; cin>>n>>k; for(int i=1;i<=n;i++) cin>>tab[i]; sort(tab+1,tab+n+1); reverse(tab+1,tab+n+1); int ans; for(ans=k;ans<n && tab[ans+1]==tab[ans];ans++); cout<<ans<<"\n"; return 0; } |