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
#include <iostream>
#include <map>
#include <vector>

using namespace std;

int main() {
    int n,k;
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    cin>>n>>k;
    int* in=new int[n];
    unsigned char* used=new unsigned char[n+1];

    for(int i=0;i<n;++i) {
        cin>>in[i];
        used[i]=0;
    }

    int res=0;
    int lastFree=0;
    for(int pos=0;pos<k;++pos){
        if(used[in[pos]]) { // użyte, szukamy nowego
            if(lastFree<=pos) lastFree=pos+1;
            for(;;) {
                if(lastFree>=n) {   // już nie ma innych odmian
                    cout<<"-1"<<endl;
                    return 0;
                }
                if(used[in[lastFree]]==0) break;
                ++lastFree;
            }
            res+=lastFree-pos;
            int tmp=in[pos];
            in[pos]=in[lastFree];
            in[lastFree]=tmp;
        }
        used[in[pos]]++;    // zliczamy, że używane
    }


    cout << res << endl;
    return 0;
}