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
#include <bits/stdc++.h>
using namespace std;
vector <int> tab;
int main()
{
    ios_base::sync_with_stdio(0);
    int n, k, ile=0;
    cin>>n>>k;
    for(int i=0; i<n; ++i)
    {
        int a;
        cin>>a;
        tab.push_back(a);
    }
    sort (tab.begin(), tab.end());
    for(int i=tab.size()-1; i>=0; --i)
    {
        if (ile>=k) break;
        ++ile;
        for(int j=i-1; j>=0; --j)
        {
            if (tab[j]==tab[i])
            {
                --i;
                ++ile;
            }
            else break;
        }
    }
    cout<<ile;
    return 0;
}