QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#341568#8057. Best Carry Player 4Vengeful_Spirit#TL 0ms0kbC++142.0kb2024-02-29 19:50:232024-02-29 19:50:24

Judging History

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

  • [2024-02-29 19:50:24]
  • 评测
  • 测评结果:TL
  • 用时:0ms
  • 内存:0kb
  • [2024-02-29 19:50:23]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;

const int MN = 5e5+5;
int a[MN], b[MN], r[MN];
bool ua[MN], ub[MN];
int getr(int i) {
    if(r[i] == i) return i;
    return r[i] = getr(r[i]);
}

void solve() {
    int m;
    cin >> m;
    long long _1 = 0, _2 = 0;
    for(int i = 0; i < m; ++i) cin >> a[i], ua[i] = 0, _1 += a[i];
    for(int i = 0; i < m; ++i) cin >> b[i], ub[i] = 0, _2 += b[i];
    // cal num9
    long long num9 = 0, num10 = 0;
    if(_1 < _2) a[0] += _2 - _1;
    if(_2 < _1) a[0] += _1 - _2;

    for(int i = 0; i < m; ++i) {
        int cc = min(a[i], b[m-1-i]);
        num9 += cc;
        a[i] -= cc;
        b[m-1-i] -= cc;
        if(cc) ua[i] = ub[m-1-i] = 1;
    }

    for(int i = 0; i < m; ++i) r[i] = i;
    for(int i = m-1; i; --i) {
        int j = m-i; j = getr(j);
        while(j < m) {
            // cout << i << " " << j << " " << num10 << "\n";
            int cc = min(a[i], b[j]);
            num10 += cc;
            a[i] -= cc;
            b[j] -= cc;
            if(b[j] > 0) break;
            if(j == m-1) break;
            r[j] = getr(j+1);
            j = r[j];
        }
    }

    // cout << num9 << " " << num10 << " ";
    if(num10 == 0) {
        bool fl = 0, aa = 0, bb = 0;
        for(int i = 0; i < m; ++i) {
            if(aa && a[i]) {fl = 1; break;}
            if(bb && b[i]) {fl = 1; break;}
            aa |= ua[i];
            bb |= ub[i];
        }
        if(fl) cout << num9 << "\n";
        else cout << max(0ll, num9 - 1) << "\n";
    } else {
        cout << num9 + num10 << "\n";
    }
}

int main() {
    ios::sync_with_stdio(0);
    cin.tie(0);
    freopen("in.txt", "r", stdin);
    int T;
    cin >> T;
    while(T--) solve();

    return 0;
}


/*
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
*/

/*
5
1
2
467900
29
*/

详细

Test #1:

score: 0
Time Limit Exceeded

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:


result: