QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#638214#6438. CrystalflyYshanqianWA 100ms12016kbC++202.5kb2024-10-13 15:13:182024-10-13 15:13:19

Judging History

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

  • [2024-10-13 15:13:19]
  • 评测
  • 测评结果:WA
  • 用时:100ms
  • 内存:12016kb
  • [2024-10-13 15:13:18]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define xx first
#define yy second
#define endl "\n"
#define pb push_back
#define int long long
#define ll long long
#define lowbit(x) x & (-x)
typedef pair<int, int> pii;
#define LF(x) fixed << setprecision(x)
#define Yshanqian ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
const int N = 1e6 + 10, M = 1010, inf = 0x3f3f3f3f, mod = 1e9 + 7, P = 13331;
int n;
int a[N], t[N];
int dp[N], f[N];
vector<int> g[N];
void dfs(int u, int fa)
{
    int s = 0;
    int mx1 = 0, mx2 = 0, mx3 = 0;

    int ndp1 = 0, ndp2 = 0;

    vector<pii> t1(2), t2(2);

    for (auto v : g[u])
    {
        if (v == fa)
            continue;
        if (t[v] == 1)
            mx1 = max(mx1, a[v]);
        else if (t[v] == 2)
            mx2 = max(mx2, a[v]);
        else
            mx3 = max(mx3, a[v]);
    }

    for (auto v : g[u])
    {
        if (v == fa)
            continue;

        dfs(v, u);

        s += dp[v];

        if (t[v] != 3)
            ndp1 = max(ndp1, a[v] + f[v] - dp[v]);
        else
        {
            if (a[v] >= t1[0].xx)
                t1[1] = t1[0], t1[0] = {a[v], v};
            else if (a[v] > t1[1].xx)
                t1[1] = {a[v], v};

            if (a[v] + f[v] - dp[v] >= t2[0].xx)
                t2[1] = t2[0], t2[0] = {a[v] + f[v] - dp[v], v};
            else if (a[v] + f[v] - dp[v] > t2[0].xx)
                t2[1] = {a[v] + f[v] - dp[v], v};
        }
    }

    for (int i = 0; i < 2; i++)
    {
        for (int j = 0; j < 2; j++)
        {
            if (t1[i].yy != t2[j].yy)
                ndp2 = max(ndp2, t1[i].xx + t2[j].xx);
        }
    }

    f[u] = dp[u];
    dp[u] = max({s + mx1, s + mx2, s + mx3, s + ndp1 + mx3, s + ndp2});
}
void solve()
{
    cin >> n;
    for (int i = 1; i <= n; i++)
    {
        a[i] = t[i] = 0;
        dp[i] = f[i] = 0;
        g[i].clear();
    }
    for (int i = 1; i <= n; i++)
        cin >> a[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].pb(b);
        g[b].pb(a);
    }
    dfs(1, 0);
    // for (int i = 1; i <= n; i++)
    //     cout << i << ": " << dp[i] << " " << f[i] << endl;

    cout << dp[1] + a[1] << endl;
}
signed main()
{
    Yshanqian;
    int T;
    T = 1;
    cin >> T;
    for (int cases = 1; cases <= T; ++cases)
    {
        // cout<<"Case #"<<cases<<": ";
        solve();
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2ms
memory: 11820kb

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: 3ms
memory: 12016kb

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: 100ms
memory: 11836kb

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

result:

wrong answer 52nd numbers differ - expected: '45', found: '44'