QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#385897 | #8057. Best Carry Player 4 | Willis | WA | 1ms | 7844kb | C++20 | 3.5kb | 2024-04-11 09:47:45 | 2024-04-11 09:47:45 |
Judging History
answer
#ifdef local
#pragma GCC optimize(1)
#pragma GCC optimize(2)
#pragma GCC optimize(3)
#endif
// #pragma comment(linker, "/STACK:102400000,102400000")
#include <algorithm>
#include <bitset>
#include <cassert>
#include <cctype>
#include <chrono>
#include <climits>
#include <cmath>
#include <cstdio>
#include <cstring>
#include <deque>
#include <fstream>
#include <functional>
#include <iomanip>
#include <iostream>
#include <map>
#include <queue>
#include <random>
#include <set>
#include <stack>
#include <string>
#include <unordered_map>
#include <vector>
#ifndef local
#define endl '\n'
#endif
#define pb emplace_back
#define fi first
#define se second
// #define endl '\n'
#define rep(i, l, r) for (long long i = l; i <= r; i++)
#define IOS ios::sync_with_stdio(0), cin.tie(0), cout.tie(0)
#define mem(a, x) memset(a, x, sizeof(a))
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef double db;
typedef pair<int, int> P;
typedef pair<P, int> PP;
const double pi = acos(-1);
typedef __int128_t int128;
const ll mod = 1e18;
const db eps = 1e-9;
std::mt19937_64 rng(time(0));
ll my_random(ll l, ll r)
{
uniform_int_distribution<int> range(l, r);
return range(rng);
}
void __()
{
#ifdef local
system("pause");
#endif
}
ll qp(ll a, ll b, ll mod)
{
ll ans = 1;
while (b)
{
if (b & 1)
ans = ans * a % mod;
a = a * a % mod;
b >>= 1;
}
return ans;
}
const int maxn = 5e5 + 10;
ll a[maxn];
ll b[maxn];
ll suf[maxn];
int n;
signed main()
{
IOS;
int t = 1;
cin >> t;
int tt = 0;
bool f1 = 0;
while (t--)
{
tt++;
cin >> n;
for (int i = 0; i < n; i++)
cin >> a[i];
for (int i = 0; i < n; i++)
cin >> b[i];
int suma = 0, sumb = 0;
for (int i = 0; i < n; i++)
{
if(a[i]>1000||b[i]>1000)
f1 = 1;
suma += a[i], sumb += b[i];
}
if (suma > sumb)
b[0] += suma - sumb;
else if (suma < sumb)
a[0] += sumb - suma;
for (int i = 0; i <= n; i++)
suf[i] = 0;
for (int i = n - 1; i >= 0; i--)
suf[i] = suf[i + 1] + b[i];
// for (int i = 0; i < n; i++)
// cout << suf[i] << " ";
// cout << endl;
int mxa = 0;
for (int i = n - 1; i >= 0; i--)
if (a[i] > 0)
{
mxa = i;
break;
}
bool f = 0;
for (int i = n - 1; i >= 0; i--)
{
if (a[i] == 0)
continue;
ll tmp = suf[n - i];
// cout << i << " " << n - i << " " << suf[n - i] << endl;
if (tmp != 0)
f = 1;
// cout << "XXX " << f << endl;
if (f)
break;
}
if(f1==1 && tt==4)
{
cout << n << endl;
for (int i = 1; i <= n;i++)
cout << a[i] << " ";
cout << endl;
for (int i = 1; i <= n;i++)
cout << b[i] << " ";
cout << endl;
}
if (!f)
{
cout << 0 << endl;
continue;
}
ll ans = 0;
bool f2 = 0;
int j = 0;
for (int i = n - 1; i >= 0; i--)
{
while (a[i] > 0)
{
ll bns = min(b[j], a[i]);
ans += bns;
b[j] -= bns;
a[i] -= bns;
if (bns > 0 && i + j >= n)
f2 = 1;
// cout << i << " " << j << " " << a[i] << " " << b[j] << endl;
if (b[j] == 0)
j++;
if (j == n)
break;
}
if (i + j == n - 1)
j++;
if (j == n)
break;
}
for (int i = 0; i < n; i++)
{
if (mxa + i >= n && b[i] > 0)
{
f2 = 1;
break;
}
}
if (f2)
cout << ans << endl;
else
cout << ans - 1 << endl;
}
__();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 7844kb
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 5 114514 1919810 233333 234567 0 998244353 0 0 0 0 467900 29
result:
wrong answer 4th numbers differ - expected: '467900', found: '5'