QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#499226#6438. Crystalfly1DemonS1WA 659ms7104kbC++201.4kb2024-07-31 09:29:572024-07-31 09:29:58

Judging History

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

  • [2024-07-31 09:29:58]
  • 评测
  • 测评结果:WA
  • 用时:659ms
  • 内存:7104kb
  • [2024-07-31 09:29:57]
  • 提交

answer

#include<bits/stdc++.h>
//#define int long long
#define endl "\n"
#define ll long long
#define PII std::pair<int,int>
using namespace std;
const int maxn = 1e5 + 5;
vector<int> w(maxn), t(maxn), sum(maxn);
vector<vector<int>> G(maxn);
int dp[maxn];
void dfs(int u, int fa) {
    int m1 = 0, m2 = 0, m3 = 0;
    bool f = false;
    for (auto v : G[u]) {
        if (v == fa) continue;
        dfs(v, u);
        sum[u] += dp[v];
        if (w[m1] < w[v]) m1 = v;
        if (t[v] == 3) {
            f = true;
            if (w[v] > w[m2]) m2 = v;
            else if (w[v] > w[m3]) m3 = v;
        }
    }
    dp[u] = max(dp[u], sum[u] + w[m1]);
    if (f && m1 != m2) dp[u] = max(dp[u], w[m1] + w[m2] + sum[u] - dp[m1] + sum[m1]);
    if (f && m1 == m2 && m3) dp[u] = max(dp[u], w[m1] + w[m3] + sum[u] - dp[m1] + sum[m1]);
}
int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(0);
    int T; cin >> T;
    while (T--) {
        memset(dp, 0, sizeof(dp));
        int n; cin >> n;
        for (int i = 1; i <= n; ++i) G[i].clear();
        for (int i = 1; i <= n; ++i) sum[i] = 0;
        for (int i = 1; i <= n; ++i) cin >> w[i];
        for (int i = 1; i <= n; ++i) cin >> t[i];
        for (int i = 1; i <= n - 1; ++i) {
            int a, b; cin >> a >> b;
            G[a].push_back(b);
            G[b].push_back(a);
        }
        dfs(1, 0);
        cout << dp[1] + w[1] << endl;
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 6992kb

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

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: 659ms
memory: 6992kb

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

result:

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