QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#663490#6438. CrystalflykukkaWA 0ms3636kbC++202.7kb2024-10-21 15:51:172024-10-21 15:51:18

Judging History

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

  • [2024-10-21 15:51:18]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3636kb
  • [2024-10-21 15:51:17]
  • 提交

answer

#include <cstdint>
#define GCC optimize(3)
#include <bits/stdc++.h>
using namespace std;

using i64 = int64_t;
using i128 = __int128;

#define IOS ios::sync_with_stdio(false), cin.tie(0), cout.tie(0)
#define endl '\n'

#ifdef FILE_CHECK
    ifstream fin("./data.in");
    ofstream fout("./data.out");
    #define cin fin
    #define cout fout
#endif

void solve() {
    int n;
    cin >> n;
    vector<i64> a(n+1,0), t(n+1,0);
    for (int i = 1; i <= n; ++i) cin >> a[i];
    for (int i = 1; i <= n; ++i) cin >> t[i];

    vector<vector<int>> edges(n+1);
    for (int i = 1; i <= n-1; ++i) {
        int from, to;
        cin >> from >> to;
        edges[from].push_back(to);
        edges[to].push_back(from);
    }

    vector<i64> dis(n+1,0), sum(n+1,0);

    function<void(int,int)> dfs = [&](int cur, int fa) -> void {
        if (edges[cur].size() == 1ull && edges[cur][0] == fa) {
            dis[cur] = a[cur];
            return;
        }

        int mx{}, temp{};
        for (auto&& to : edges[cur]) {
            if (to == fa) continue;

            if (a[to] >= temp) {
                temp = a[to];
                mx = to;
            }

            dfs(to, cur);
            sum[cur] += dis[to] - a[to];
        }

        // case 1
        int v1{}, u1{}, v2{}, u2{};
        i64 temp1{}, temp2{INT64_MAX};
        for (auto&& to : edges[cur]) {
            if (to == fa) continue;
            if (t[to] == 3 && a[to] >= temp1) {
                temp1 = a[to];
                v1 = to;
            }
            // dis[to] -> a[to] + sum[to]
            if (temp2 >= a[to] + sum[to] - dis[to]) {
                temp2 = a[to] + sum[to] - dis[to];
                u2 = to;
            }
        }

        temp1 = 0, temp2 = INT64_MAX;
        for (auto&& to : edges[cur]) {
            if (to == fa) continue;
            if (t[to] == 3 && a[to] >= temp1 && u2 != to) {
                temp1 = a[to];
                v2 = to;
            }
            // dis[to] -> a[to] + sum[to]
            if (temp2 >= a[to] + sum[to] - dis[to] && v1 != to) {
                temp2 = a[to] + sum[to] - dis[to];
                u1 = to;
            }
        }
        
        dis[cur] = max(dis[cur], sum[cur] + a[mx]);
        dis[cur] = max(dis[cur], sum[cur] + 2 * a[u1] - dis[u1] + sum[u1] + a[v1]);
        dis[cur] = max(dis[cur], sum[cur] + 2 * a[u2] - dis[u2] + sum[u2] + a[v2]);
        
        dis[cur] += a[cur];
    };
    dfs(1, 0);

    cout << dis[1] << endl;
    
}

signed main() {
    IOS;
    int t{1};
    cin >> t;
    while (t--) {
        solve();
    }

    #ifdef FILE_CHECK
        fin.close();
        fout.close();
    #endif
}

詳細信息

Test #1:

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

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: 0ms
memory: 3636kb

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
21
19
18

result:

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