#include <iostream>
#include<vector>
#define ll long long
using namespace std;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n,k; cin>>n>>k;
vector<int>tab(n);
for(int i = 0;i<n;++i){
cin>>tab[i];
}
vector<bool>wys(n+1);
ll odp=0; int found = 0;
for(int i = 0;i<n;++i){
if(!wys[tab[i]]){
wys[tab[i]]=true;
odp+=i; odp-=found;
++found;
}
if(found==k)break;
}
if(found<k)cout<<-1;
else cout<<odp;
}
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 <iostream> #include<vector> #define ll long long using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); int n,k; cin>>n>>k; vector<int>tab(n); for(int i = 0;i<n;++i){ cin>>tab[i]; } vector<bool>wys(n+1); ll odp=0; int found = 0; for(int i = 0;i<n;++i){ if(!wys[tab[i]]){ wys[tab[i]]=true; odp+=i; odp-=found; ++found; } if(found==k)break; } if(found<k)cout<<-1; else cout<<odp; } |
English