QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#369674#8057. Best Carry Player 4lizixin#WA 72ms3688kbC++141.2kb2024-03-28 16:13:552024-03-28 16:13:57

Judging History

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

  • [2024-03-28 16:13:57]
  • 评测
  • 测评结果:WA
  • 用时:72ms
  • 内存:3688kb
  • [2024-03-28 16:13:55]
  • 提交

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;
    int Mxa = -1, Mxb = -1; 
    for (int i = 0; i < n; ++i) {
        cin >> a[i];
        suma += a[i];
        if (a[i] > 0) Mxa = i;
    }
    for (int i = 0; i < n; ++i) {
        cin >> b[i];
        if (b[i] > 0) Mxb = i;
        sumb += b[i];
    }
    if (suma > sumb) {
        b[0] += suma - sumb;
    } else if (sumb > suma) {
        a[0] += sumb - suma;
    }

    bool flag = 0;

    if (Mxa + Mxb < n) {
        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: 1ms
memory: 3544kb

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: 72ms
memory: 3688kb

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

result:

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