QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#369671#8057. Best Carry Player 4lizixin#WA 67ms7780kbC++141.3kb2024-03-28 16:10:492024-03-28 16:10:51

Judging History

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

  • [2024-03-28 16:10:51]
  • 评测
  • 测评结果:WA
  • 用时:67ms
  • 内存:7780kb
  • [2024-03-28 16:10:49]
  • 提交

answer

#include <iostream>

using namespace std;
const int N = 5e5+100;

int a[N], b[N], c[N];
int n;
using ll = long long;

void sol() {
    cin >> n;
    ll suma = 0, sumb = 0;
    for (int i = 0; i < n; ++i) {
        cin >> a[i];
        suma += a[i];
    }
    for (int i = 0; i < n; ++i) {
        cin >> b[i];
        c[i] = (b[i] > 0);
        sumb += b[i];
    }
    c[n] = 0;
    if (suma > sumb) {
        b[0] += suma - sumb;
    } else if (sumb > suma) {
        a[0] += sumb - suma;
    }
    for (int i = n - 1; i >= 0; --i) {
        c[i] |= c[i + 1];
    }
    bool flag = 0;
    for (int i = 1; i < n; ++i) {
        if (c[n - i] > 0) {
            flag = 1;
            break;
        }
    }
    if (flag == 0) {
        cout << 0 << '\n';
        return;
    }
    ll cnta = 0, cntb = 0, ans = 0;
    flag = 0;
    for (int i = 0; i < n; ++i) {
        if (cntb > 0 && a[i] > 0) {
            flag = 1;
        }
        cnta = a[i];
        cntb += b[n - 1 - i];
        ll tmp = min(cnta, cntb);
        ans += tmp;
        cnta -= tmp;
        cntb -= tmp;
    }
    if (!flag) {
        ans -= 1;
    }
    cout << ans << '\n';
}

int main() {
    ios::sync_with_stdio(0);
    int T;
    cin >> T;
    while(T --) {
        sol();
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 7764kb

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: 67ms
memory: 7780kb

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

result:

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