QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#716566 | #8057. Best Carry Player 4 | wly_sh# | WA | 56ms | 3616kb | C++23 | 2.0kb | 2024-11-06 15:33:41 | 2024-11-06 15:33:41 |
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-2; ll tmp=0;
fo(i,0,n-2)
{
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--;
}
}
fd(i,n-2,0)
{
if(a[i] && b[n-1]){
if(i>0) res=0;
if(a[i]>b[n-1]) {
a[i]-=b[n-1];
tmp+=b[n-1];
b[n-1]=0;
}
else {
b[n-1]-=a[i];
tmp+=a[i];
a[i]=0;
}
}
if(b[i] && a[n-1]){
if(i>0) res=0;
if(b[i]>a[n-1]) {
b[i]-=a[n-1];
tmp+=a[n-1];
a[n-1]=0;
}
else {
a[n-1]-=b[i];
tmp+=b[i];
b[i]=0;
}
}
}
// cout<<tmp<<" "<<res <<"\n";
return tmp+a[n-1]+b[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;
}
/*
1 5
0 1 1 1 1
0 0 1 0 0
*/
详细
Test #1:
score: 100
Accepted
time: 1ms
memory: 3616kb
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: 56ms
memory: 3528kb
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 4 3 3 2 0 0 1 1 3 1 3 1 1 0 0 0 0 1 4 1 4 1 0 2 4 3 1 5 1 0 2 1 1 1 1 0 1 3 5 3 2 2 2 -1 1 2 2 2 -1 4 1 2 1 1 0 1 0 4 1 1 2 2 0 3 3 0 2 0 1 0 1 2 1 2 1 3 4 0 2 5 0 2 1 1 1 0 3 2 3 0 2 0 4 3 3 0 2 2 2 1 3 1 1 0 1 -1 1 0 3 2 2 0 2 1 1 1 2 -1 0 2 4 1 3 3 2 2 2 -1 2 0 1 2 3 1 3 1 -1 2 2 3 0 1 2 ...
result:
wrong answer 5th numbers differ - expected: '3', found: '4'