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
#include <bits/stdc++.h>
using namespace std;
typedef unsigned long long ull;

int bylo[500007];

int main() {

    ios_base::sync_with_stdio(0);
    cin.tie(NULL);
    cout.tie(NULL);
    // freopen("input.txt", "r", stdin);
    // freopen("output.txt", "w", stdout);

    int n,k,j;
    long long w=0;

    cin>>n>>k;
    vector <int> tab (n,0);

     for (int i=0;i<n;i++){
        cin>>tab[i];
     }
     
    j=0; 
    for (int i=0;i<k;i++){
        if (bylo[tab[i]]){
            while (j<n && bylo[tab[j]]){
                j++;
            }
            if (j<n && bylo[tab[j]]==0){
               bylo[tab[j]]++;
               w+=j-i; 
            }
            else{
                w=-1;
                break;
            }
        } 
        else{
            bylo[tab[i]]++;
        } 
    }

   cout<<w;
    

    return 0;
}