#include <cstdio>
using namespace std;
int tab[500010];
bool unique[500010];
int main()
{
int n, k, a;
scanf("%d %d", &n, &k);
for (int i = 0; i < n; i++)
{
unique[i] = true;
}
int count = 0;
for (int i = 0; i < n; i++)
{
scanf("%d", &a);
a--;
if (unique[a])
{
tab[count] = i;
unique[a] = false;
count++;
}
}
if (count < k)
{
printf("-1");
return 0;
}
int res = 0;
for (int i = 0; i < k; i++)
{
res += tab[i] - i;
}
printf("%d", res);
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 42 43 44 | #include <cstdio> using namespace std; int tab[500010]; bool unique[500010]; int main() { int n, k, a; scanf("%d %d", &n, &k); for (int i = 0; i < n; i++) { unique[i] = true; } int count = 0; for (int i = 0; i < n; i++) { scanf("%d", &a); a--; if (unique[a]) { tab[count] = i; unique[a] = false; count++; } } if (count < k) { printf("-1"); return 0; } int res = 0; for (int i = 0; i < k; i++) { res += tab[i] - i; } printf("%d", res); return 0; } |
English