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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// Bartlomiej Stefanski
#include <iostream>
#include <vector>

using namespace std;

#define REP(x, n) for (int x = 0; x < (n); ++x)
#define SIZE(x) ((int)(x).size())
#define PB push_back

int n, k, temp;
int ans = 0;
int inUse = 0;
int ora[500001];
bool bylo[500001];
vector<int> pozycje;

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

    cin >> n >> k;

    REP(i, n+1) bylo[i] = false;

    bool skipp = false;
    REP(i, n) if (!skipp)
    {
        cin >> temp;
        if(i < k)
        {
            if(!bylo[temp])
            {
                bylo[temp] = true;
                inUse++;
            }
            else
            {
                pozycje.PB(i);
            }
        }
        else if(inUse < k && !bylo[temp])
        {
            bylo[temp] = true;
            inUse++;

            // no space for swapping
            if(SIZE(pozycje) <= 0)
            {
                cout << "-1";
                skipp = true;
            }
            ans += (i-pozycje[SIZE(pozycje)-1]);
            pozycje.pop_back();
        }
    }

    if(skipp)
    {
        return 0;
    }

    if(inUse == k)
    {
        cout << ans;
    }
    else
    {
        cout << "-1";
    }
}
/*
5 3
3 3 3 1 2
4
*/