#include<bits/stdc++.h> using namespace std; int main(){ int n,k; cin>>n>>k; int kolejne[n]; int check[n]; int ile=0; int wyn=0; int pom=0; int p=0; for (int i=0;i<n;i++){ cin>>kolejne[i]; } for (int i=0;i<n;i++){ check[i]=0; } for (int i=0;i<n;i++){ if(check[kolejne[i]]==0){ check[kolejne[i]]=1; } } for (int i=0;i<n;i++){ ile=ile+check[i]; } if (ile<k){ cout<<-1; return 0; } for (int i=0;i<n;i++){ check[i]=0; } for (int poz=0;poz<k;poz++){ if (check[kolejne[poz]]==0){ check[kolejne[poz]]=1; } else{ p=poz; while(check[kolejne[p]]==1){ p++; wyn++; } swap(kolejne[poz],kolejne[p]); } } cout<<wyn; return 0; }
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 46 47 48 49 50 | #include<bits/stdc++.h> using namespace std; int main(){ int n,k; cin>>n>>k; int kolejne[n]; int check[n]; int ile=0; int wyn=0; int pom=0; int p=0; for (int i=0;i<n;i++){ cin>>kolejne[i]; } for (int i=0;i<n;i++){ check[i]=0; } for (int i=0;i<n;i++){ if(check[kolejne[i]]==0){ check[kolejne[i]]=1; } } for (int i=0;i<n;i++){ ile=ile+check[i]; } if (ile<k){ cout<<-1; return 0; } for (int i=0;i<n;i++){ check[i]=0; } for (int poz=0;poz<k;poz++){ if (check[kolejne[poz]]==0){ check[kolejne[poz]]=1; } else{ p=poz; while(check[kolejne[p]]==1){ p++; wyn++; } swap(kolejne[poz],kolejne[p]); } } cout<<wyn; return 0; } |