QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#168357 | #6438. Crystalfly | zlxFTH# | WA | 2ms | 3848kb | C++14 | 1.1kb | 2023-09-08 11:16:50 | 2023-09-08 11:16:50 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
void solve() {
int n;
cin >> n;
vector<int> a(n);
for (int i = 0; i < n; i++) {
cin >> a[i];
}
vector<int> t(n);
for (int i = 0; i < n; i++) {
cin >> t[i];
}
vector<vector<int>> g(n);
for (int i = 1; i < n; i++) {
int u, v;
cin >> u >> v;
u--, v--;
g[u].push_back(v);
g[v].push_back(u);
}
i64 ans = a[0];
auto dfs = [&](auto dfs, int u, int fa) -> void {
multiset<int> sa, sb;
for (auto v : g[u]) if (v != fa) {
if (t[v] <= 2) {
sa.insert(a[v]);
} else {
sb.insert(a[v]);
}
dfs(dfs, v, u);
}
if (sb.size()) {
ans += *sb.rbegin();
sb.erase(prev(sb.end()));
}
int mx = -1e9;
if (sa.size()) mx = max(mx, *sa.rbegin());
if (sb.size()) mx = max(mx, *sb.rbegin());
if (mx != -1e9) ans += mx;
};
dfs(dfs, 0, 0);
cout << ans << "\n";
}
int main() {
cin.tie(0)->sync_with_stdio(0);
int t;
cin >> t;
while (t--) {
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3848kb
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: -100
Wrong Answer
time: 2ms
memory: 3552kb
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 62 31 15 16 28 19 19
result:
wrong answer 4th numbers differ - expected: '56', found: '62'