#include <bits/stdc++.h> using namespace std; void imax(int &a, int b){ a=max(a, b); } void imin(int &a, int b){ a=min(a, b); } void lmax(long long &a, long long b){ a=max(a, b); } void lmin(long long &a, long long b){ a=min(a, b); } /* WARNING: I'm using strange bracket style! */ vector <int> v; long long res; set <int> s; int n, k, x; int main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin>>n>>k; for (int i=1; i<=n; i++) cin>>x, v.push_back(x), s.insert(x); if (s.size()<k) return cout<<"-1\n", 0; s.clear(), x=0; for (int i=0; i<k; i++) { while (s.count(v[x])) x++; res+=x-i, s.insert(v[x]); } cout<<res<<"\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 40 41 | #include <bits/stdc++.h> using namespace std; void imax(int &a, int b){ a=max(a, b); } void imin(int &a, int b){ a=min(a, b); } void lmax(long long &a, long long b){ a=max(a, b); } void lmin(long long &a, long long b){ a=min(a, b); } /* WARNING: I'm using strange bracket style! */ vector <int> v; long long res; set <int> s; int n, k, x; int main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin>>n>>k; for (int i=1; i<=n; i++) cin>>x, v.push_back(x), s.insert(x); if (s.size()<k) return cout<<"-1\n", 0; s.clear(), x=0; for (int i=0; i<k; i++) { while (s.count(v[x])) x++; res+=x-i, s.insert(v[x]); } cout<<res<<"\n"; return 0; } |