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

bitset<500007> u;

int main(){
	ios_base::sync_with_stdio(false);
	int n,m;
	cin >> n >> m;
	int t[n+7];
	for (int i = 0; i < n; ++i)cin >> t[i];
	int p=0;
	int q=0;
	int w=0;
	while(p<m){
		if(u[t[q]]==0){
			u[t[q]]=1;
			w+=q-p;
			++p;
			++q;
		}
		else{
			++q;
			if(q==n){
				cout << "-1\n";
				return 0;
			}
		}
	}
	cout << w << "\n";
	
	return 0;
}