QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#625095 | #6438. Crystalfly | GepiWang | WA | 104ms | 36592kb | C++14 | 2.4kb | 2024-10-09 17:26:35 | 2024-10-09 17:26:35 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define int long long
#define endl '\n'
#define PII pair<ll, ll>
const ll N = 1e6 + 5;
const ll M = 1e5 + 5;
ll ans, x, y, n, m, q;
ll a[N];
ll t[N];
vector<ll> ed[N];
ll dp[N];
ll sum[N];
bool vis[N];
void dfs(ll x)
{
vis[x] = 1;
priority_queue<PII> tr[2], fl[2];
for (ll temp : ed[x])
{
if (vis[temp])
continue;
vis[temp] = 1;
dfs(temp);
sum[x] += dp[temp];
ll tag = t[temp];
if (tag == 3)
tag = 1;
else
tag = 0;
tr[tag].push({a[temp], temp});
fl[tag].push({-dp[temp] + sum[temp] + a[temp], temp});
}
ll res = 0;
for (ll i = 0; i < 2; i++)
{
if (!tr[i].empty())
res = max(res, tr[i].top().first + sum[x]);
if (fl[i].empty())
continue;
PII now = fl[i].top();
vector<PII> temp;
while (!tr[1].empty())
{
PII u = tr[1].top();
if (u.second == now.second)
{
temp.push_back(u);
tr[1].pop();
continue;
}
else
{
res = max(res, now.first + u.first + sum[x]);
break;
}
}
while (!temp.empty())
{
tr[1].push(temp.back());
temp.pop_back();
}
}
dp[x] = res;
}
void init()
{
/*ll ans, x, y, n, m, q;
ll a[N];
ll t[N];
vector<ll> ed[N];
ll dp[N];
ll sum[N];
bool vis[N];*/
for (ll i = 1; i <= n; i++)
{
a[i] = t[i] = 0;
ed[i].clear();
dp[i] = 0;
sum[i] = 0;
vis[i] = 0;
}
}
void solve()
{
cin >> n;
for (ll i = 1; i <= n; i++)
{
cin >> a[i];
}
for (ll i = 1; i <= n; i++)
{
cin >> t[i];
}
for (ll i = 1; i <= n - 1; i++)
{
ll x, y;
cin >> x >> y;
ed[x].push_back(y);
ed[y].push_back(x);
}
dfs(1);
// for (ll i = 1; i <= n; i++)
// {
// cout << dp[i] << " ";
// }
// cout << endl;
cout << dp[1] + a[1];
cout << endl;
init();
}
signed main()
{
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
ll t = 1;
cin >> t;
while (t--)
{
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 4ms
memory: 32184kb
input:
2 5 1 10 100 1000 10000 1 2 1 1 1 1 2 1 3 2 4 2 5 5 1 10 100 1000 10000 1 3 1 1 1 1 2 1 3 2 4 2 5
output:
10101 10111
result:
ok 2 number(s): "10101 10111"
Test #2:
score: 0
Accepted
time: 0ms
memory: 34276kb
input:
10 6 8 1 1 5 8 9 2 1 2 2 2 2 1 2 2 3 2 4 1 5 2 6 6 6 4 4 1 3 6 2 1 3 3 3 3 1 2 1 3 3 4 4 5 5 6 6 10 5 1 8 5 1 1 3 1 2 2 2 1 2 2 3 2 4 2 5 3 6 10 6 8 8 9 6 9 5 6 6 4 2 1 3 3 2 2 2 2 3 1 1 2 1 3 3 4 4 5 5 6 4 7 2 8 7 9 9 10 7 10 9 1 5 7 5 4 1 1 1 2 1 3 2 1 2 1 3 3 4 3 5 5 6 1 7 5 7 1 1 4 2 3 1 3 2 2 1...
output:
25 24 24 56 31 14 16 28 19 19
result:
ok 10 numbers
Test #3:
score: -100
Wrong Answer
time: 104ms
memory: 36592kb
input:
100000 10 9 1 7 9 5 1 10 5 3 8 2 1 1 3 1 2 2 3 3 1 1 2 2 3 3 4 1 5 2 6 2 7 6 8 7 9 7 10 3 6 6 1 2 1 2 1 2 1 3 10 6 5 3 7 1 5 1 9 7 3 3 1 3 3 1 3 2 2 2 3 1 2 1 3 3 4 4 5 2 6 6 7 4 8 7 9 1 10 7 2 8 9 7 7 9 10 2 3 2 2 3 2 1 1 2 2 3 1 4 3 5 4 6 3 7 1 8 1 1 4 2 7 9 9 9 8 4 2 7 3 1 2 1 1 1 1 1 2 2 3 2 4 3...
output:
49 12 41 45 8 4 38 22 20 21 5 19 23 44 26 5 21 28 28 32 36 15 5 26 38 36 20 35 27 36 20 9 32 32 22 11 41 15 20 54 38 20 45 36 20 29 24 4 37 44 30 45 17 17 36 29 3 6 24 44 25 28 50 13 5 1 44 27 17 20 15 17 17 24 29 39 10 39 38 26 22 24 9 17 41 7 28 33 51 18 14 14 7 35 23 13 11 43 28 24 35 2 43 33 17 ...
result:
wrong answer 70th numbers differ - expected: '21', found: '20'