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

bool used[500005]={};
long long int n,k,cnt=0,a,l=1;
int main()
{
	cin >> n >> k;
	for(int i=1;i<=n;i++)
	{
		cin >> a;
		if(!used[a] && l<=k)
		{
			cnt+=(i-l);
                        l++;
			used[a]=true;
			
		}
	}
	if(k>=l)
	cout << -1;
	else
	cout << cnt;
	
	return 0;
}