QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#615637 | #8057. Best Carry Player 4 | SkyEyeController | WA | 66ms | 3536kb | C++23 | 1.6kb | 2024-10-05 19:38:02 | 2024-10-05 19:38:04 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define int long long
const int inf = 1e7;
int m;
int testcase = 0;
int did(vector<int> a, vector<int> b)
{
bool tag = 0;
int resb = 0;
int ans = 0;
bool check = 0;
for (int i = 1; i < m; i++)
{
resb += b[m - i];
if (a[i] != 0 && resb != 0)
{
check = 1;
break;
}
}
if (!check)
{
return 0;
}
resb = 0;
for (int i = 0; i < m; i++)
{
if (resb != 0)
{
tag = 1;
}
resb += b[m - 1 - i];
int delta = min(a[i], resb);
a[i] -= delta;
resb -= delta;
if (a[i] != 0 && ans != 0)
{
tag = 1;
}
ans += delta;
}
if (tag)
{
return ans;
}
else
{
return ans - 1;
}
}
void solve()
{
testcase++;
cin >> m;
vector<int> a(m), b(m);
int sum1 = 0, sum2 = 0;
for (auto &x : a)
cin >> x, sum1 += x;
for (auto &x : b)
cin >> x, sum2 += x;
if (testcase == 51)
{
cout << m << endl;
for (auto &x : a)
cout << x << " ";
cout << endl;
for (auto &x : b)
cout << x << " ";
cout << endl;
}
if (sum1 < sum2)
a[0] += sum2 - sum1;
if (sum1 > sum2)
b[0] += sum1 - sum2;
cout << max(did(a, b), did(b, a)) << endl;
}
signed main()
{
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int t;
cin >> t;
while (t--)
solve();
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3528kb
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: 66ms
memory: 3536kb
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:
2 0 4 0 3 3 3 2 0 0 1 1 3 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 2 0 1 2 5 0 0 0 1 0 0 3 0 0 2 3 2 0 3 0 2 1 1 0 1 0 4 0 0 2 2 0 3 3 0 2 0 1 0 0 2 1 2 0 3 4 0 2 5 0 2 1 0 0 0 3 2 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 2 0 0 2 4 1 3 3 2 2 2 0 2 0 0 2 3 1 ...
result:
wrong answer 51st numbers differ - expected: '2', found: '5'