QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#639376 | #6438. Crystalfly | wht11 | WA | 75ms | 13904kb | C++14 | 2.0kb | 2024-10-13 19:13:57 | 2024-10-13 19:13:58 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define lowbit(x) (x & (-x))
#define debug(x) cerr << #x << ": " << x << endl;
const int N = 2e5 + 10;
int n;
int a[N], t[N];
vector<int> g[N];
int dp[N][2];
int sum[N];
int ans = 0;
void dfs(int u, int fa)
{
int mx = 0;
int mx1 = 0, mx2 = 0;
sum[u] = 0;
for (auto v : g[u])
{
if (v == fa)
continue;
dfs(v, u);
sum[u] += dp[v][0];
if (sum[mx1] + a[mx1] - dp[mx1][0] < sum[v] + a[v] - dp[v][0])
{
mx2 = mx1;
mx1 = v;
}
else if (sum[mx1] + a[mx1] - dp[mx1][0] < sum[v] + a[v] - dp[v][0])
mx2 = v;
mx = max(mx, a[v]);
}
dp[u][0] = sum[u] + mx;
// cerr << u << " " << dp[u][0] << endl;
// cerr << u << " " << mx1 << " " << mx2 << endl;
for (auto v : g[u])
{
if (v == fa)
continue;
if (t[v] == 3)
{
if (mx1 == v)
{
if (mx2)
dp[u][0] = max(dp[u][0], sum[u] - dp[mx2][0] + sum[mx2] + a[mx2] + a[v]);
}
else
{
// cerr << u << " " << mx1 << endl;
dp[u][0] = max(dp[u][0], sum[u] - dp[mx1][0] + sum[mx1] + a[mx1] + a[v]);
}
}
}
return;
}
void solve()
{
dp[0][0] = 1e18;
cin >> n;
for (int i = 1; i <= n; i++)
cin >> a[i];
for (int i = 1; i <= n; i++)
cin >> t[i];
for (int i = 1; i < n; i++)
{
int u, v;
cin >> u >> v;
g[u].push_back(v);
g[v].push_back(u);
}
dfs(1, 0);
cout << dp[1][0] + a[1] << "\n";
for (int i = 1; i <= n; i++)
{
g[i].clear();
dp[i][1] = dp[i][0] = 0;
}
return;
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int t = 1;
cin >> t;
while (t--)
solve();
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 2ms
memory: 13904kb
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: 13832kb
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: 75ms
memory: 11944kb
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 41 26 5 21 28 28 32 36 15 5 26 38 36 20 35 27 36 20 9 32 32 22 9 41 15 20 54 36 20 45 36 20 29 20 4 37 44 30 45 17 17 36 29 3 6 24 44 25 28 44 13 5 1 44 27 17 20 15 16 17 24 29 39 10 35 38 26 22 24 9 17 41 7 28 33 42 18 14 14 7 35 23 13 11 43 30 24 35 2 35 33 15 1...
result:
wrong answer 14th numbers differ - expected: '44', found: '41'