QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#569288#8057. Best Carry Player 4stavageWA 57ms6000kbC++172.1kb2024-09-16 21:43:342024-09-16 21:43:35

Judging History

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

  • [2024-09-16 21:43:35]
  • 评测
  • 测评结果:WA
  • 用时:57ms
  • 内存:6000kb
  • [2024-09-16 21:43:34]
  • 提交

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 m;
bool check(int k, int t)
{
    return k + t >= m;
}
void solve()
{
    scanf("%lld", &m);
    int suma = 0, sumb = 0;
    for (int i = 0; i < m; i++) scanf("%lld", &a[i]), suma += a[i];
    for (int i = 0; i < m; i++) scanf("%lld", &b[i]), sumb += b[i];
     if (sumb > suma) {
        int mid;
        for (int i = 0; i < m; i++) {
            mid = a[i];
            a[i] = b[i];
            b[i] = mid;
        }
        mid = suma;
        suma = sumb;
        sumb = mid;
    }
    int ans = 0;
    int ca = -1, cb = -1, ssum = inf;
    for (int i = 1; i < m; i++) {
        int l = 0, r = m - 1, tmp = r;
        while (l <= r) {
            int mid = (l + r) / 2;
            if (check(mid, i)) {
                r = mid - 1;
                tmp = mid;
            }
            else {
                l = mid + 1;
            }
        }
        if (ssum > i + tmp) {
            ca = i;
            cb = tmp;
            ssum = i + tmp;
        }
    }
    if (ca != -1 && cb != -1) {
//        cout << ca << " " << cb << " " << endl;
        a[ca]--;
        b[cb]--;
        ans++;
    }
    else {
        printf("0\n");
        return;
    }
    int r = m - 1;
    for (int i = 0; i < m; i++) {
        while (a[i] >= b[r] && (i + r) >= m - 1 && r >= 0) {
            ans += b[r];
            a[i] -= b[r];
            r--;
        }
        if (r < 0) {
            ans += a[m - 1];
            printf("%lld\n", ans);
            return;
        }
    }
//    cout << "olahfc\n";
    printf("%lld\n", ans);
}

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

詳細信息

Test #1:

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

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: 57ms
memory: 5912kb

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

result:

wrong answer 3rd numbers differ - expected: '4', found: '2'