QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#623386#6438. CrystalflyHYFFFFWA 111ms3852kbC++202.3kb2024-10-09 11:40:202024-10-09 11:40:24

Judging History

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

  • [2024-10-09 11:40:24]
  • 评测
  • 测评结果:WA
  • 用时:111ms
  • 内存:3852kb
  • [2024-10-09 11:40:20]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define all(a) a.begin(), a.end()
void print() { cout << '\n'; }
template <typename T, typename...Args>
void print(T t, Args...args) { cout << t << ' '; print(args...); }
using ll = long long;
const int N = 2e6 + 5, base = 1e6;

template <typename T>
void chmax (T& x, T y) {
    x = max(x, y);
}

void solve () {
    int n;
    cin >> n;
    
    vector<int> a(n), t(n);
    for (int i = 0; i < n; i ++) {
        cin >> a[i];
    }
    for (int i = 0; i < n; i ++) {
        cin >> t[i];
    }
    
    vector<vector<int>> e(n);
    for (int i = 1; i < n; i ++) {
        int u, v;
        cin >> u >> v;
        u --;
        v --;
        e[u].push_back(v);
        e[v].push_back(u);
    }
    
    if (n == 1) {
        cout << a[0] << '\n';
        return;
    }
    
    vector<array<ll, 2>> dp(n);
    auto dfs = [&](auto&& self, int u, int fa) -> void {
        if (u && e[u].size() == 1) {
            return;
        }
        ll sum0 = 0;
        int maxv = 0;
        vector<int> who;
        for (int v: e[u]) {
            if (v == fa) {
                continue;
            }
            self(self, v, u);
            sum0 += dp[v][0];
            chmax(maxv, a[v]);
            who.push_back(v);
        }
        dp[u][0] = sum0 + maxv;
        dp[u][1] = sum0;
        sort(all(who), 
            [&](int x, int y) {
                return dp[x][1] + a[x] > dp[y][1] + a[y];
            });
        for (int v: e[u]) {
            if (v == fa) {
                continue;
            }
            if (t[v] == 3) {
                ll res = 0;
                if (v == who[0]) {
                    if (who.size() == 1) {
                        continue;
                    }
                    res = sum0 - dp[who[1]][0] + dp[who[1]][1] + a[who[1]] + a[v];
                } else {
                    res = sum0 - dp[who[0]][0] + dp[who[0]][1] + a[who[0]] + a[v];
                }
                chmax(dp[u][0], res);
            }
        }
    };
    dfs(dfs, 0, -1);
    
    cout << dp[0][0] + a[0] << '\n';
}

int main() {
	ios::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);
	
	int 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: 0ms
memory: 3852kb

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: 3608kb

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: 111ms
memory: 3628kb

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
22
20
21
5
19
23
41
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
26
20
4
37
39
30
45
17
17
34
29
3
6
24
44
25
28
50
13
5
1
44
27
17
21
15
17
17
24
29
35
10
35
36
26
22
22
9
17
41
7
27
33
42
18
14
14
7
32
23
13
11
43
30
24
35
2
40
33
17
...

result:

wrong answer 3rd numbers differ - expected: '41', found: '40'