#include <bits/stdc++.h> using namespace std; typedef long long ll; int n, k; ll res; bool t[500001]; int main() { scanf("%d%d", &n, &k); ll ct = 0; while(n--) { int a; scanf("%d", &a); if(!k) continue; if(!t[a]) { t[a] = 1; k--; res += ll(ct); } else ct++; } if(k) printf("-1"); else printf("%lld", res); }
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 | #include <bits/stdc++.h> using namespace std; typedef long long ll; int n, k; ll res; bool t[500001]; int main() { scanf("%d%d", &n, &k); ll ct = 0; while(n--) { int a; scanf("%d", &a); if(!k) continue; if(!t[a]) { t[a] = 1; k--; res += ll(ct); } else ct++; } if(k) printf("-1"); else printf("%lld", res); } |