#include <bits/stdc++.h> #pragma GCC optimize(0fast) #define BOOST ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0); #define st first #define nd second #define pb push_back #define INF 1000000000 #define mil 1000000 #define modulo 1000000007 using namespace std; typedef long long ll; using namespace std; int tab[1000001]; int lic[1000001]; ll f(int n, int k){ int it = 0, nr = -1; for(int i=0;i<n; i++){ if(!lic[tab[i]]){ it++; } lic[tab[i]]++; if(it == k){ nr = i; break; } } if(nr == -1) return nr; ll res = 0; int x = 0; for(int i=nr; i>=0; i--){ if(lic[tab[i]] > 1){ res += (nr - i - x); lic[tab[i]]--; x++; } } return res; } int main(){ BOOST; int n,k; cin >> n >> k; for(int i=0; i<n; i++){ cin >> tab[i]; } cout << f(n,k) << "\n"; }
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 | #include <bits/stdc++.h> #pragma GCC optimize(0fast) #define BOOST ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0); #define st first #define nd second #define pb push_back #define INF 1000000000 #define mil 1000000 #define modulo 1000000007 using namespace std; typedef long long ll; using namespace std; int tab[1000001]; int lic[1000001]; ll f(int n, int k){ int it = 0, nr = -1; for(int i=0;i<n; i++){ if(!lic[tab[i]]){ it++; } lic[tab[i]]++; if(it == k){ nr = i; break; } } if(nr == -1) return nr; ll res = 0; int x = 0; for(int i=nr; i>=0; i--){ if(lic[tab[i]] > 1){ res += (nr - i - x); lic[tab[i]]--; x++; } } return res; } int main(){ BOOST; int n,k; cin >> n >> k; for(int i=0; i<n; i++){ cin >> tab[i]; } cout << f(n,k) << "\n"; } |