QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#331851 | #8057. Best Carry Player 4 | ucup-team027# | WA | 46ms | 3600kb | C++23 | 1.1kb | 2024-02-18 20:30:43 | 2024-02-18 20:30:43 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define int long long
const int INF = 1e16;
void solve() {
int n; cin >> n;
vector<int> a(n), b(n);
for (int &i: a) cin >> i;
for (int &i: b) cin >> i;
a[0] = b[0] = INF;
// is carrying even possible?
{
bool answer_z = 1;
int has_b = 0, has_a = 0;
for (int i = 1, j = n-1; i < n; i++, j--) {
if (b[j]) has_b = 1;
if (has_b && a[i] > 0) {
answer_z = 0; break;
}
if (a[j]) has_a = 1;
if (has_a && b[i] > 0) {
answer_z = 0; break;
}
}
if (answer_z) {
cout << "0\n";
return;
}
}
// how many carries are there? any overcarries?
int ans = 0; bool overcarry = 0;
for (int i = 0, j = n-1; i < n; i++) {
while (a[i] > 0) {
if (i+j < n-1) break;
int mn = min(a[i], b[j]);
a[i] -= mn; b[j] -= mn; ans += mn;
if (mn > 0 && i+j >= n) overcarry = 1;
if (b[j] == 0) j--;
}
}
if (overcarry) {
cout << ans << '\n';
return;
} else {
cout << ans-1 << '\n';
return;
}
}
signed main() {
ios::sync_with_stdio(0); cin.tie(0);
int t; cin >> t;
while (t--) {
solve();
}
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3520kb
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: 46ms
memory: 3600kb
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 4 3 3 2 0 0 1 0 2 0 3 0 0 0 0 0 0 0 4 0 4 1 0 2 3 2 1 4 0 0 2 0 0 1 1 0 0 3 5 3 1 2 1 0 0 2 2 2 0 3 0 2 1 1 0 0 0 4 0 0 2 2 0 3 3 0 1 0 1 0 0 1 1 2 0 2 4 0 2 5 0 1 1 0 0 0 2 1 3 0 1 0 4 3 3 0 2 2 0 1 3 0 1 0 0 0 1 0 3 2 2 0 1 0 1 0 1 0 0 2 4 1 2 3 2 2 2 0 1 0 0 2 3 1 3 0 0 2 2 3 0 1 1 0 1 1 ...
result:
wrong answer 1st numbers differ - expected: '2', found: '1'