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
#include <iostream>                                                             
#include <vector>                                                               
#include <set>
#include <map>
using namespace std;


int main() {

	ios_base::sync_with_stdio(0);
	cin.tie(0);

	long long int n, k;
	cin >> n;
	cin >> k;

	set<long long int> temp;
	long long int odl = 0;


	for (long long int i = 0; i < n; i++) {
		long long int a;
		cin >> a;
		if (temp.find(a) == temp.end() && temp.size()<k) {
			temp.insert(a);
			odl += i+1;
			odl -= temp.size();
		
		}
		if (temp.size() == k) break;
	}
	if (temp.size() < k) {
		cout << "-1" << endl;
		return 0;
	}

	
	cout << odl << endl;
	return 0;
}