This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
mt19937 rng(228);
const int N = 1e6 + 1;
int a[N], ans[N];
const int G = (1 << 20);
int t[2 * G];
int get(int ql, int qr) {
int ans = 0;
for (ql += G, qr += G; ql <= qr; ql >>= 1, qr >>= 1) {
if (ql & 1) ans ^= t[ql++];
if (~qr & 1) ans ^= t[qr--];
}
return ans;
}
void upd(int ql, int val) {
for (ql += G, t[ql] ^= val, ql >>= 1; ql; ql >>= 1) t[ql] = t[ql << 1] ^ t[ql << 1 | 1];
}
signed main() {
cin.tie(nullptr)->sync_with_stdio(false);
int n;
cin >> n;
for (int i = 0; i < n; i++) cin >> a[i];
for (int i = 1; i < n; i++) {
if (a[i-1] > a[i]) continue;
if (a[i-1] == a[i] || a[i] == a[i-1] + 1) {
ans[i] = 1;
if (ans[i-1] == 1 && a[i-1] + 1 <= a[i] - 1) {
int t = rng();
upd(a[i-2] + 1, t);
upd(a[i] - 1, t);
}
continue;
}
int good = get(a[i-1], a[i]);
if (good == 0) {
ans[i] = 1;
int t = rng();
upd(a[i-1] + 1, t);
upd(a[i] - 1, t);
if (ans[i-1] == 1) {
t = rng();
upd(a[i-2] + 1, t);
upd(a[i] - 1, t);
}
}
}
cout << n - accumulate(ans, ans + N, 0) << "\n";
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |