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
43
44
45
46
47
48
49
50
51
52
53
#include <bits/stdc++.h>
#include <iostream>

//#define TEST

using namespace std;

#define FAST  ios_base::sync_with_stdio(0) ;cin.tie(0);

typedef long long ll;

void przekierowanie()
{
#ifdef TEST
    freopen( "input.txt", "r", stdin );
    freopen( "output.txt", "w", stdout );
#endif
}

set <long> dobre;

int main()
{
    FAST
    przekierowanie();
    ll N, K;
    cin  >> N >> K;

    ll index = 1;
    ll licznik = 0;
    ll delta = 0;
    long war;
    cin >> war;
    dobre.insert( war );
    while( index < N  && dobre.size() < K )
    {
        cin >> war;
        auto d = dobre.insert( war );
        auto wynik = d.second;
        if( wynik )
            licznik += delta;
        else
            delta ++;
        index ++;
    }

    if( dobre.size() < K )
        cout << -1;
    else
        cout << licznik;
    cout << '\n';
    return 0;
}