#include <bits/stdc++.h> using namespace std; constexpr int MAXN=5e5+7; int butelka[MAXN]; bool uzyta[MAXN]; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int n, k, ile_butelek=0, do_zamiany=0; long long wynik=0; cin >> n >> k; for (int i=0; i < n; i++) cin >> butelka[i]; for (int i=0; i < n; i++) { if (ile_butelek == k) break; if (uzyta[butelka[i]] == 0) { wynik += do_zamiany; ile_butelek++; uzyta[butelka[i]] = 1; } else { do_zamiany++; } } if (ile_butelek < k) cout << -1 << '\n'; else cout << wynik << '\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 32 33 34 35 36 37 38 39 40 41 42 | #include <bits/stdc++.h> using namespace std; constexpr int MAXN=5e5+7; int butelka[MAXN]; bool uzyta[MAXN]; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int n, k, ile_butelek=0, do_zamiany=0; long long wynik=0; cin >> n >> k; for (int i=0; i < n; i++) cin >> butelka[i]; for (int i=0; i < n; i++) { if (ile_butelek == k) break; if (uzyta[butelka[i]] == 0) { wynik += do_zamiany; ile_butelek++; uzyta[butelka[i]] = 1; } else { do_zamiany++; } } if (ile_butelek < k) cout << -1 << '\n'; else cout << wynik << '\n'; return 0; } |