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
#include <bits/stdc++.h>

using namespace std;

int n,k;

void sol(){
    cin >> n >> k;
    vector<int> input;
    vector<int> ind;

    for(int i = 0; i < n; i++){
        int temp;
        cin >> temp;
        input.push_back(temp);
    }

    int j = 0;
    long long res = 0;

    vector<bool>visited(n+1, false);

    for(int i = 0; i < k; i++){
        while(j < n && visited[input[j]]){
            j++;
        }
        if(j == n){
            cout << -1 << endl;
            return;
        }

        res += (j-i);
        visited[input[j]] = true;
    }

    cout << res << endl;
}

int main(){
    cin.tie(NULL);
    ios_base::sync_with_stdio(0);
    sol();
}