QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#608262 | #5278. Mex and Cards | Yshanqian | WA | 1ms | 7792kb | C++20 | 4.9kb | 2024-10-03 20:14:30 | 2024-10-03 20:14:31 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define xx first
#define yy second
#define endl "\n"
#define pb push_back
#define int long long
#define ll long long
#define lowbit(x) x & (-x)
typedef pair<int, int> pii;
#define LF(x) fixed << setprecision(x)
#define Yshanqian ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
const int N = 4e5 + 10, M = 1010, inf = 0x3f3f3f3f, mod = 1e9 + 7, P = 13331;
int n;
int a[N], b[N];
multiset<int> st;
struct node
{
int l, r;
int mn, lazy;
} tr[N << 2];
void pushup(int u)
{
tr[u].mn = min(tr[u << 1].mn, tr[u << 1 | 1].mn);
}
void build(int u, int l, int r)
{
tr[u] = {l, r, 0, 0};
if (l == r)
return;
int mid = l + r >> 1;
build(u << 1, l, mid);
build(u << 1 | 1, mid + 1, r);
}
void change(int u, int x)
{
tr[u].mn += x;
tr[u].lazy += x;
}
void pushdown(int u)
{
if (tr[u].lazy)
{
change(u << 1, tr[u].lazy);
change(u << 1 | 1, tr[u].lazy);
tr[u].lazy = 0;
}
}
void modify(int u, int l, int r, int x)
{
if (tr[u].l >= l && tr[u].r <= r)
{
change(u, x);
return;
}
pushdown(u);
int mid = tr[u].l + tr[u].r >> 1;
if (l <= mid)
modify(u << 1, l, r, x);
if (r > mid)
modify(u << 1 | 1, l, r, x);
pushup(u);
}
int ask(int u, int l, int r)
{
if (tr[u].l >= l && tr[u].r <= r)
return tr[u].mn;
pushdown(u);
int mid = tr[u].l + tr[u].r >> 1;
int ans = inf;
if (l <= mid)
ans = min(ans, ask(u << 1, l, r));
if (r > mid)
ans = min(ans, ask(u << 1 | 1, l, r));
return ans;
}
void solve()
{
int ans = 0;
cin >> n;
build(1, 1, n + 10);
int mn = inf;
b[0] = inf;
int lst = -1;
for (int i = 1; i <= n; i++)
{
cin >> a[i];
b[i] = min(b[i - 1], a[i]);
if (b[i] != 0)
lst = i;
}
int s = b[lst];
for (int i = lst; i >= 1; i--)
{
if (i != lst)
{
for (int j = 1; j <= b[i] - s; j++)
st.insert(i), ans += i;
}
else
{
for (int j = 1; j <= b[i]; j++)
st.insert(i), ans += i;
}
if (a[i] - s != 0)
modify(1, i, i, a[i] - s);
}
for (int i = lst + 1; i <= n; i++)
{
if (a[i])
modify(1, i, i, a[i]);
}
// for (int i = 1; i <= n; i++)
// cout << i << " " << ask(1, i, i) << '\n';
cout << ans << endl;
int q;
cin >> q;
while (q--)
{
int op, x;
cin >> op >> x;
x++;
if (op == 1)
{
if (x == 1)
{
int l = 1, r = 2e5 + 10;
while (l < r)
{
int mid = l + r + 1 >> 1;
if (ask(1, x + 1, x + mid))
l = mid;
else
r = mid - 1;
}
if (ask(1, x + 1, x + 1))
{
ans += r + 1;
modify(1, x + 1, x + r, -1);
st.insert(x + r);
}
else
{
ans++;
st.insert(1);
}
}
else
{
if (st.find(x - 1) != st.end())
{
int l = 1, r = 2e5 + 10;
while (l < r)
{
int mid = l + r + 1 >> 1;
if (ask(1, x + 1, x + mid))
l = mid;
else
r = mid - 1;
}
if (ask(1, x + 1, x + 1))
{
ans += r + 1;
modify(1, x + 1, x + r, -1);
st.insert(x + r);
}
else
{
ans++;
st.insert(x);
}
st.erase(st.find(x - 1));
}
else
modify(1, x, x, 1);
}
}
else
{
if (ask(1, x, x))
modify(1, x, x, -1);
else
{
auto it = st.lower_bound(x);
st.erase(it);
int now = *it;
ans -= now - x + 1;
modify(1, min(x + 1, now), now, 1);
}
}
cout << ans << endl;
}
}
signed main()
{
Yshanqian;
int T;
T = 1;
// cin >> T;
for (int cases = 1; cases <= T; ++cases)
{
// cout<<"Case #"<<cases<<": ";
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 7724kb
input:
5 2 1 3 0 2 6 1 0 1 1 2 4 1 3 2 1 2 1
output:
4 5 7 7 9 7 3
result:
ok 7 numbers
Test #2:
score: 0
Accepted
time: 1ms
memory: 7788kb
input:
1 0 0
output:
0
result:
ok 1 number(s): "0"
Test #3:
score: -100
Wrong Answer
time: 0ms
memory: 7792kb
input:
10 3 8 1 4 10 3 10 9 7 10 20 2 5 1 4 1 2 1 4 1 3 1 3 1 0 2 8 1 5 1 4 1 0 1 3 1 8 1 6 1 4 1 1 1 5 1 9 1 6 2 7
output:
16 16 16 24 24 24 24 26 26 26 26 28 28 28 28 28 29 29 29 29 29
result:
wrong answer 1st numbers differ - expected: '14', found: '16'