QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#693483#6438. CrystalflyZero#WA 1ms5872kbC++202.5kb2024-10-31 16:15:192024-10-31 16:15:23

Judging History

你现在查看的是最新测评结果

  • [2024-10-31 16:15:23]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:5872kb
  • [2024-10-31 16:15:19]
  • 提交

answer

#include <bits/stdc++.h>
#pragma GCC optimize (3)
#define de(a) cout << #a << " = " << a << "\n";
#define deg(a) cout << #a << " = " << a << " ";
#define lowbit(x) ((x) & (-x))
#define int long long
#define siz(a) ((int)a.size())
#define all(a) a.begin(), a.end()
#define PII pair<int, int>
using ll  = long long;
using ull = unsigned long long;
using namespace std;
constexpr ll inf = 1e18;
constexpr int N = 1e6 + 10;
int n, k;
int a[N], t[N];
    
void solve(int Case) {
    cin >> n;
    for (int i = 1; i <= n; i++) {
        cin >> a[i];
    }
    for (int i = 1; i <= n; i++) {
        cin >> t[i];
    }
    vector<vector<int>> g(n + 1, vector<int>());
    for (int i = 1; i < n; i++) {
        int u, v;
        cin >> u >> v;
        g[u].emplace_back(v);
        g[v].emplace_back(u);
    }
    vector<int> son(n + 1), son3(n + 1), beg(n + 1);
    auto init = [&] (auto init, int u, int f) -> void {
        for (auto v : g[u]) {
            if (v == f) continue;
            if (a[v] > a[son[u]]) {
                son[u] = v;
            }
            if (t[v] == 3) {
                if (a[v] > a[son3[u]]) son3[u] = v;
            }
            init(init, v, u);
        }

    }; init(init, 1, 0);    
    auto init1 = [&] (auto init1, int u, int f) -> void {
        int bg = 0;
        for (auto v : g[u]) {
            if (v == f) continue;
            init1(init1, v, u);
            if (v == son3[u]) continue;
            if (a[v] - a[son[v]] > bg) {
                bg = a[v] - a[son[v]];
                beg[u] = v;
            }
        }
    }; init1(init1, 1, 0);

    auto dfs = [&](auto &dfs, int u, int f, int o) -> int {
        int ans = 0;
        if (o) ans += a[u];
        int res1 = 0, res2 = 0;
        if (son3[u] && beg[u]) {
            res1 += dfs(dfs, son3[u], u, 1);

            res1 += a[beg[u]];
            for (auto v : g[beg[u]]) {
                if (v == u) continue;
                res1 += dfs(dfs, v, beg[u], 0);
            }
        } 
        {
            if (son[u]) res2 += dfs(dfs, son[u], u, 1);
            for (auto v : g[u]) {
                if (v == f || v == son[u]) continue;
                res2 += dfs(dfs, v, u, 0);
            }
        }
        ans += max(res1, res2);
        return ans;
    }; 
    cout << dfs(dfs, 1, 0, 1) << "\n";
}   

signed main() {
    cin.tie(0)->ios::sync_with_stdio(false);
    int T = 1;
    cin >> T; cin.get();

    int Case = 0;
    while (++Case <= T) {
        solve(Case);
    }

    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 5564kb

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: 1ms
memory: 5872kb

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
24
19
19

result:

wrong answer 8th numbers differ - expected: '28', found: '24'