QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#569432#8057. Best Carry Player 4stavageWA 43ms9976kbC++172.3kb2024-09-16 22:45:262024-09-16 22:45:27

Judging History

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

  • [2024-09-16 22:45:27]
  • 评测
  • 测评结果:WA
  • 用时:43ms
  • 内存:9976kb
  • [2024-09-16 22:45:26]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
typedef long double LD;
#define int LL
#define double LD
#define endl "\n"
typedef pair<int, int> PII;
const int N = 5e5 + 5;
const int INF = 0x3f3f3f3f;
const int inf = 0x3f3f3f3f3f3f3f3f;
const double PI = acosl(-1.0);
const double eps = 1e-8;
const int MOD = 1e9 + 7;

int a[N], b[N];
int aa[N], bb[N];
int m;
int nnn = 0;
int calc(int a[], int b[], int ma, int mb)
{
    int res = 0;
    int ca = -1, cb = -1;
    for (int i = 0; i < m; i++) {
        if (a[i] && b[m - i]) {
            ca = i;
            cb = m - i;
            break;
        }
    }
    if (ca == -1 && cb == -1) {
        if (ma + mb >= m) {
            ca = ma;
            cb = mb;
        }
    }
    if (ca != -1 && cb != -1) {
//        cout << ca << " " << cb << " " << endl;
        a[ca]--;
        b[cb]--;
        res++;
    }
    else {
        return 0;
    }
    int r = m - 1;
    int t = m - 1;
    for (int i = 0; i < m; i++) {
        while (r >= 0 && a[i] >= b[r] && i + r >= t) {
            res += b[r];
            a[i] -= b[r];
            r--;
        }
        if (r >= 0 && a[i] < b[r] && i + r >= t) {
            res += a[i];
            b[r] -= a[i];
            a[i] = 0;
        }
    }
    res += a[m - 1];
    return res;
}
void solve()
{
    nnn++;
    cin >> m;
    string x;
    int suma = 0, sumb = 0;
    int ma = 0, mb = 0;
    for (int i = 0; i < m; i++) {
        cin >> a[i];
        aa[i] = a[i];
        suma += a[i];
        if (a[i]) ma = max(ma, i);
        x += char(a[i]);
    }
    for (int i = 0; i < m; i++) {
        cin >> b[i];
        bb[i] = b[i];
        sumb += b[i];
        if (b[i]) mb = max(mb, i);
        x += (char) a[i];
    }
    if (nnn == 50)
        for (int i = 4; i < x.length(); i++) {
            cout << x[i] << " ";
        }
    int ans = calc(a, b, ma, mb);
//    for (int i = 0; i < m; i++) {
//        cout << a[i] << " " << b[i] << endl;
//    }
    ans = max(ans, calc(bb, aa, mb, ma));
//    cout << "olahfc\n";
    cout << ans << endl;
}

signed main()
{
    ios::sync_with_stdio(false), cin.tie(0);
    int _;
    cin >> _;
//    _ = 1;
    while (_--) {
        solve();
    }
    return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 2ms
memory: 9776kb

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: 43ms
memory: 9976kb

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
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
2
0
1
\x01 

result:

wrong output format Expected integer, but "\x01" found