#include <iostream> using namespace std; int tab[500001]; bool tab2[500001]; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n, k; cin >> n >> k; for (int i = 0; i < n; i++) { cin >> tab[i]; } int czas = 0, i = 0, p = 0; while (k>0 && i < n) { if (tab2[tab[i]]==true) { czas++, i++; } else { tab2[tab[i]]=true; k--; p++; i = p; } } if (k!=0) { cout << -1; return 0; } cout << czas; }
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 | #include <iostream> using namespace std; int tab[500001]; bool tab2[500001]; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n, k; cin >> n >> k; for (int i = 0; i < n; i++) { cin >> tab[i]; } int czas = 0, i = 0, p = 0; while (k>0 && i < n) { if (tab2[tab[i]]==true) { czas++, i++; } else { tab2[tab[i]]=true; k--; p++; i = p; } } if (k!=0) { cout << -1; return 0; } cout << czas; } |