QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#688119 | #5415. Ropeway | 2317663977 | WA | 1ms | 5616kb | C++23 | 1.5kb | 2024-10-29 23:28:26 | 2024-10-29 23:28:27 |
Judging History
answer
#include <iostream>
using namespace std;
#include <vector>
#include <algorithm>
#include <set>
#include <map>
#include <queue>
#include <cmath>
#include <cstring>
using ll = long long;
const int N = 5e5 + 10;
int n, k, Q;
ll a[N];
ll pre[N], suf[N];
int q[N];
string s;
void solve()
{
cin >> n >> k;
for (int i = 1;i <= n;i++) cin >> a[i];
a[n + 1] = 0;
cin >> s;
s = '1' + s + '1';
int hh = 0, tt = -1;
q[++tt] = 0;
for (int i = 1;i <= n + 1;i++)
{
pre[i] = pre[q[hh]] + a[i];
if (hh <= tt && i - k + 1 > q[hh]) hh++;
while (hh <= tt && (pre[q[tt]] >= pre[i] || s[i] == '1')) tt--;
q[++tt] = i;
}
hh = 0, tt = -1;
q[++tt] = n + 1;
for (int i = n;i > 0;i--)
{
suf[i] = suf[q[hh]] + a[i];
if (hh <= tt && i + k - 1 < q[hh]) hh++;
while (hh <= tt && (suf[q[tt]] >= suf[i] || s[i] == '1')) tt--;
q[++tt] = i;
}
vector<ll> val(n + 2, 1e17);
cin >> Q;
while (Q--)
{
int x;
ll v;
cin >> x >> v;
ll ans = pre[x] + suf[x] - 2 * a[x] + v;
if (s[x] != '1')
{
val[x] = 1e17;
int pos = x;
for (int i = x - 1;x - i < k;i--)
{
val[i] = min(val[i + 1], pre[i]);
pos = i;
if (s[i] == '1') break;
}
for (int i = x + 1;i - x < k;i++)
{
ans = min(ans, suf[i] + val[max(pos, i - k)]);
if (s[i] == '1') break;
}
}
cout << ans << '\n';
}
}
int main()
{
ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
int T = 1;
cin >> T;
while (T--)
{
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 5616kb
input:
3 10 3 5 10 7 100 4 3 12 5 100 1 0001000010 2 2 3 6 15 5 6 1 1 1 1 1 00000 1 3 100 5 6 1 1 1 1 1 00100 1 3 100
output:
206 214 103 203
result:
wrong answer 3rd numbers differ - expected: '0', found: '103'