#include <cstdio> #include <unordered_set> using namespace std; typedef long long LL; int main() { int n, k; scanf("%d %d", &n, &k); LL res = 0; unordered_set<int> f; for (int i=0; i<n; ++i) { int a; scanf("%d", &a); if (f.size() >= k) continue; // printf("read %d. ", a); if (f.find(a) == f.end()) { // printf("super, using: %d. ", i - f.size()); res += i - f.size(); f.insert(a); } // printf("\n"); } if (f.size() >= k) { printf("%lld\n", res); } else { printf("-1\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 | #include <cstdio> #include <unordered_set> using namespace std; typedef long long LL; int main() { int n, k; scanf("%d %d", &n, &k); LL res = 0; unordered_set<int> f; for (int i=0; i<n; ++i) { int a; scanf("%d", &a); if (f.size() >= k) continue; // printf("read %d. ", a); if (f.find(a) == f.end()) { // printf("super, using: %d. ", i - f.size()); res += i - f.size(); f.insert(a); } // printf("\n"); } if (f.size() >= k) { printf("%lld\n", res); } else { printf("-1\n"); } return 0; } |