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

// Zadanie ORA
int main()
{
    int n, k; cin >> n >> k;
    unordered_set<int> s;

    long long res = 0;
    long long d = 0;

    for(int i=0; i<n; ++i)
    {
        int a; cin >> a;
        if(s.count(a))
        {
            ++d;
        }
        else
        {
            s.insert(a);
            res += d;
        }
        if(s.size()==k)
            break;
    }
    if(s.size()==k)
        cout << res << endl;
    else
        cout << -1 << endl;
}