QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#376893 | #8057. Best Carry Player 4 | JerryTcl | WA | 47ms | 3972kb | C++20 | 904b | 2024-04-04 18:16:18 | 2024-04-04 18:16:18 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
using int64 = long long;
void Solve() {
int m, f = 1; cin >> m; vector<int64> a(m), b(m);
int64 sa = 0, sb = 0, xa = m - 1, xb = m - 1, ans = 0;
for(int64 &x : a) cin >> x, sa += x; while(~xa && !a[xa]) --xa;
for(int64 &x : b) cin >> x, sb += x; while(~xb && !b[xb]) --xb;
if(xa + xb < m) return puts("0"), void();
sa > sb ? b[0] += sa - sb : a[0] += sb - sa;
for(int i = 0, j = m - 1; i < m; ++i)
while(a[i] && i + j >= m - 1) {
if(!b[j]) { --j; continue; }
const int w = min(a[i], b[j]);
f &= i + j < m, a[i] -= w, b[j] -= w, ans += w;
}
for(int i = 1; i < xb; ++i) f &= !a[m - i];
for(int i = 1; i < xa; ++i) f &= !b[m - i]; printf("%lld\n", ans - f);
}
int main() {
cin.tie(0)->sync_with_stdio(0);
int T; cin >> T; while(T--) Solve();
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3972kb
input:
5 2 1 2 3 4 3 1 0 1 0 1 0 4 1 0 0 1 1 1 1 1 5 123456 114514 1919810 233333 234567 20050815 998244353 0 0 0 10 5 3 5 3 2 4 2 4 1 5 9 9 8 2 4 4 3 5 3 0
output:
5 1 2 467900 29
result:
ok 5 number(s): "5 1 2 467900 29"
Test #2:
score: -100
Wrong Answer
time: 47ms
memory: 3820kb
input:
100000 5 0 1 1 1 1 0 0 1 0 0 5 0 0 0 0 0 1 1 1 0 0 5 0 0 2 1 1 0 2 1 0 1 5 0 0 0 0 0 1 2 1 0 0 5 0 1 0 1 1 0 0 1 1 1 5 2 0 0 0 1 1 0 0 0 3 5 2 0 0 1 1 0 2 1 1 1 5 0 0 0 0 2 0 0 0 0 1 5 0 0 0 0 0 0 1 1 0 0 5 4 0 0 0 0 0 0 0 1 0 5 0 0 0 0 1 2 1 1 0 0 5 0 2 3 0 0 0 0 0 1 0 5 1 1 1 0 1 1 0 1 0 1 5 0 0 0...
output:
1 0 4 0 3 3 3 2 0 0 1 0 2 0 3 0 0 0 0 0 0 0 4 0 4 1 0 2 3 3 1 5 0 0 2 0 0 1 1 0 0 3 5 3 2 2 1 0 1 2 2 2 0 3 0 2 1 1 0 1 0 4 0 0 2 2 0 3 3 0 2 0 1 0 0 1 1 2 0 3 4 0 2 5 0 1 1 0 0 0 2 1 3 0 2 0 4 3 3 0 2 2 0 1 3 1 1 0 0 0 1 0 3 2 2 0 2 1 1 0 1 0 0 2 4 1 3 3 2 2 2 0 2 0 0 2 3 1 3 0 0 2 2 3 0 1 2 0 1 1 ...
result:
wrong answer 1st numbers differ - expected: '2', found: '1'