#include <bits/stdc++.h> using namespace std; const int MAX_N = 500001; bool czy_unikalna[MAX_N]; int oranzada[MAX_N]; int n,k; long long solve() { int j = 0; long long wynik = 0; for(int i = 0;i<n;i++) { if(!czy_unikalna[oranzada[i]]){ czy_unikalna[oranzada[i]] = true; wynik+=(long long)(i-j); j++; if(j==k)break; } } if(j==k) return wynik; else return -1; } int main() { ios_base::sync_with_stdio(false); cin>>n>>k; for(int i =0;i<n;i++){ cin>>oranzada[i]; } cout<<solve() <<"\n"; 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 | #include <bits/stdc++.h> using namespace std; const int MAX_N = 500001; bool czy_unikalna[MAX_N]; int oranzada[MAX_N]; int n,k; long long solve() { int j = 0; long long wynik = 0; for(int i = 0;i<n;i++) { if(!czy_unikalna[oranzada[i]]){ czy_unikalna[oranzada[i]] = true; wynik+=(long long)(i-j); j++; if(j==k)break; } } if(j==k) return wynik; else return -1; } int main() { ios_base::sync_with_stdio(false); cin>>n>>k; for(int i =0;i<n;i++){ cin>>oranzada[i]; } cout<<solve() <<"\n"; return 0; } |