#include <iostream>
#include <queue>
using namespace std;
int main() {
int n, k;
cin >> n;
cin >> k;
int tab[n];
for (int i = 0; i < n; i++) {
tab[i] = 0;
}
int bad = 0, a;
queue<int> q;
for (int i = 0; i < k; i++) {
cin >> a;
if (tab[a] != 0) {
q.push(i);
bad++;
}
tab[a]++;
}
int switches = 0;
for (int i = k; i < n; i++) {
cin >> a;
if (tab[a] == 0 && !q.empty()) {
switches += i - q.front();
q.pop();
}
tab[a]++;
}
if (!q.empty()) {
cout << -1 << endl;
} else {
cout << switches << endl;
}
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 45 46 47 48 | #include <iostream> #include <queue> using namespace std; int main() { int n, k; cin >> n; cin >> k; int tab[n]; for (int i = 0; i < n; i++) { tab[i] = 0; } int bad = 0, a; queue<int> q; for (int i = 0; i < k; i++) { cin >> a; if (tab[a] != 0) { q.push(i); bad++; } tab[a]++; } int switches = 0; for (int i = k; i < n; i++) { cin >> a; if (tab[a] == 0 && !q.empty()) { switches += i - q.front(); q.pop(); } tab[a]++; } if (!q.empty()) { cout << -1 << endl; } else { cout << switches << endl; } return 0; } |
English