QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#614827#8057. Best Carry Player 4SkyEyeController#WA 65ms3848kbC++23853b2024-10-05 16:59:282024-10-05 16:59:30

Judging History

你现在查看的是最新测评结果

  • [2024-10-05 16:59:30]
  • 评测
  • 测评结果:WA
  • 用时:65ms
  • 内存:3848kb
  • [2024-10-05 16:59:28]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
const int inf = 1e7;
void solve()
{
    int m;
    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;
    bool check = 0;
    if (sum1 < sum2)
        a[0] += sum2 - sum1;
    if (sum1 > sum2)
        b[0] += sum1 - sum2;
    bool tag = 0;
    int tmp = 0;
    int ans = 0;
    for (int i = 0; i < m; i++)
    {
        if (tmp)
            tag = 1;
        tmp += b[m - 1 - i];
        int delta = min(a[i], tmp);
        tmp -= delta;
        ans += delta;
    }
    cout << max(0, ans - (tag ^ 1)) << 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: 3848kb

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: 65ms
memory: 3568kb

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
1
3
0
0
0
0
0
1
1
4
0
4
1
0
2
3
3
1
5
1
0
2
1
0
1
1
0
0
3
5
3
2
2
1
0
1
2
3
2
0
3
0
2
1
1
0
1
0
4
1
1
2
2
0
3
3
0
2
0
1
0
0
1
1
2
1
3
4
0
2
5
0
1
1
0
0
0
2
1
3
0
1
1
4
3
3
1
2
2
2
1
3
1
1
0
0
0
1
0
3
2
2
0
1
1
1
1
2
0
1
2
4
1
3
3
2
2
2
0
1
0
1
2
3
1
3
1
0
3
2
3
0
1
2
1
1
1
...

result:

wrong answer 1st numbers differ - expected: '2', found: '1'