QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#716477 | #8057. Best Carry Player 4 | wly_sh# | WA | 52ms | 3616kb | C++23 | 1.3kb | 2024-11-06 15:22:22 | 2024-11-06 15:22:23 |
Judging History
answer
#include <bits/stdc++.h>
#define ll long long
#define db long double
#define eb emplace_back
#define mk make_pair
#define pi pair<ll, ll>
#define fo(i, a, b) for (ll(i) = (a); (i) <= (b); (i)++)
#define fd(i, a, b) for (ll(i) = (a); (i) >= (b); (i)--)
using namespace std;
const int N = 5e5 + 10;
ll n,x;
ll check(vector<ll> a,vector<ll> b)
{
ll res=1;
int j=n-1; ll tmp=0;
fo(i,0,n-1)
{
while(i+j>=n-1)
{
while(i+j>=n-1 && !b[j]) j--;
if(i+j<n-1) break;
if(i+j>=n) res=0;
if(a[i]>b[j]) {
a[i]-=b[j];
tmp+=b[j];
b[j]=0;
}
else {
b[j]-=a[i];
tmp+=a[i];
a[i]=0;
break;
}
j--;
}
}
// cout<<tmp<<" "<<res <<"\n";
return tmp+a[n-1]-res;
}
vector<ll> a,b;
void solve()
{
a.clear(),b.clear();
cin>>n;
fo(i,0,n-1) cin>>x,a.eb(x);
fo(i,0,n-1) cin>>x,b.eb(x);
cout<<max(check(a,b),check(b,a))<<"\n";
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0), cout.tie(0);
int T;
cin >> T;
while (T--)
{
solve();
}
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3608kb
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: 52ms
memory: 3616kb
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 1 3 0 3 0 0 0 0 0 1 0 4 1 4 1 0 2 3 3 1 5 0 0 2 1 0 1 1 0 0 3 5 3 2 2 2 0 1 1 2 2 0 3 1 2 1 1 0 1 0 4 1 1 2 2 0 3 3 0 2 0 1 0 1 1 1 2 1 3 4 0 2 5 0 1 1 0 0 0 3 1 3 0 2 0 4 3 3 0 2 2 1 1 3 1 1 0 0 0 1 0 3 2 2 0 2 1 1 1 2 -1 1 2 4 1 3 3 2 2 2 0 2 0 0 2 3 1 3 1 0 2 2 3 0 1 2 1 1 1...
result:
wrong answer 1st numbers differ - expected: '2', found: '1'