QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#200686 | #6438. Crystalfly | FYBGC | WA | 75ms | 13856kb | C++14 | 1.8kb | 2023-10-04 18:25:55 | 2023-10-04 18:25:56 |
Judging History
answer
#include <bits/stdc++.h>
#define int long long
using namespace std;
const int N = 1e6 + 10;
int h[N], e[N], ne[N], idx = 1;
void add(int a, int b)
{
e[idx] = b, ne[idx] = h[a], h[a] = idx++;
}
int a[N], t[N], f[N], ans = 0;
void dfs(int u, int fa)
{
if (!h[u])
return;
for (int i = h[u]; i; i = ne[i])
{
int v = e[i];
if (fa != v)
dfs(v, u);
}
int m = 0, mm = 0;
for (int i = h[u]; i; i = ne[i])
{
int v = e[i];
if (v == fa)
continue;
if (a[v] > a[m])
{
mm = m;
m = v;
}
else if (a[v] > a[mm])
{
mm = v;
}
}
// cerr << u << '\n';
// cerr << m << " " << mm << '\n';
f[u] = a[m] + a[mm];
if (t[m] == 1 && t[mm] == 3)
{
ans -= min(a[mm], f[m]);
}
else if (t[m] == 3 && t[mm] == 3)
{
ans -= min({a[mm], f[m], f[mm]});
}
else if (t[m] == 3 && t[mm] == 1)
{
ans -= min(a[mm], f[mm]);
}
else if (t[m] == 1 && t[mm] == 1)
{
ans -= a[mm];
}
ans += f[u];
}
void solve()
{
int n;
cin >> n;
for (int i = 1; i <= n; i++)
h[i] = 0, f[i] = 0;
idx = 1;
ans = 0;
for (int i = 1; i <= n; i++)
cin >> a[i];
for (int i = 1; i <= n; i++)
{
cin >> t[i];
if(t[i] == 2)
t[i] = 1;
}
int u, v;
for (int i = 1; i < n; i++)
{
cin >> u >> v;
add(u, v);
add(v, u);
}
dfs(1, 0);
cout << ans + a[1] << '\n';
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(0);
int T;
cin >> T;
while (T--)
solve();
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 13848kb
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: 2ms
memory: 13812kb
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: 13856kb
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 40 45 8 4 38 19 20 19 5 19 22 44 26 5 21 28 28 32 36 15 5 26 38 34 20 35 27 36 20 9 31 32 22 11 41 15 20 54 38 20 45 36 20 29 20 4 37 44 30 39 17 17 30 27 3 6 24 44 25 28 45 13 5 1 44 27 17 21 15 17 17 24 27 35 10 39 36 26 22 15 9 17 41 7 27 33 51 18 14 14 7 32 23 13 11 43 30 24 31 2 35 32 17 ...
result:
wrong answer 3rd numbers differ - expected: '41', found: '40'