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
33
34
35
36
37
38
39
40
41
42
#include <bits/stdc++.h>

using namespace std;

int n,k,tab[500005],it=1,op=2,wyn;
set <int> st;

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

    cin>>n>>k;

    for(int i=0; i<n; i++)
    {
        cin>>tab[i];
        st.insert(tab[i]);
    }
    if(st.size()<k)
    {
        cout<<"-1";
        return 0;
    }
    while(it<k)
    {
        if(tab[it]!=tab[op])
        {
            tab[it]=tab[op];
            //cout<<op<<" "<<it<<" ";
            it++;
            op++;
            wyn+=op-it;
        }
        else
        {
            op++;
        }
    }
    cout<<wyn;
    return 0;
}