QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#371851#8057. Best Carry Player 4CreditWA 126ms5700kbC++171.8kb2024-03-30 17:12:572024-03-30 17:12:57

Judging History

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

  • [2024-03-30 17:12:57]
  • 评测
  • 测评结果:WA
  • 用时:126ms
  • 内存:5700kb
  • [2024-03-30 17:12:57]
  • 提交

answer

#include<iostream>
using namespace std;
int a[500005], b[500005];
bool flag1=0,flag=0;
int m;
int xiaochu(int front, int back) {
    long long int sum = 0;
    if (a[back] > 0 && b[front] >= 0 && front < m && a[back] > b[front]) {
        flag = 1;
        a[back] -= b[front];
        sum += b[front];
        b[front] = 0;
        if (front + back >= m && b[front] != 0)flag1 = 1;
        sum += xiaochu(front + 1, back);
    }
    if (a[back] >= 0 && b[front] > 0 && a[back] <= b[front]) {
        flag = 1;
        b[front] -= a[back];
        sum += a[back];
        if ((front + back >= m && a[back] != 0) || (flag && a[back] < b[front]))flag1 = 1;
        a[back] = 0;
    }
    //cout<<sum<<' ';
    return sum;
}
void solve() {
    long long int num = 0, na = 0, nb = 0;
    flag = 0;
    flag1 = 0;
    cin >> m;
    for (int i = 0;i < m;i++) {
        cin >> a[i];
        na += a[i];
    }
    for (int i = 0;i < m;i++) {
        cin >> b[i];
        nb += b[i];
    }
    b[m] = 0;
    a[m] = 0;
    int numa, numb;
    for (int i = m;i > 0;i--) {
        if (a[i]) {
            numa = i;
            break;
        }
    }
    for (int i = m;i > 0;i--) {
        if (b[i]) {
            numb = i;
            break;
        }
    }
    if (numa + numb < m) {
        cout << 0 << endl;
        return;
    }
    if (na > nb) {
        b[0] += na - nb;
    }
    else {
        a[0] += nb - na;
    }
    for (int i = m - 1;i >= 0;i--) {
        int u;
        u = xiaochu(m - i - 1, i);
        num += u;
        // cout<<"u="<<u<<' ';
    }
    // cout << flag << endl;
    if (num > 0 && !flag1) {
        cout << num - 1 << endl;
    }
    else {
        cout << num << endl;
    }
}
int main() {
    int t;
    cin >> t;
    while (t--) {
        solve();
    }
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 5700kb

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: 126ms
memory: 5596kb

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

result:

wrong answer 14th numbers differ - expected: '0', found: '1'