結果

問題 No.1221 木 *= 3
ユーザー 钟梓皓钟梓皓
提出日時 2020-09-04 21:47:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 796 bytes
コンパイル時間 2,074 ms
コンパイル使用メモリ 203,864 KB
実行使用メモリ 17,988 KB
最終ジャッジ日時 2024-05-04 22:03:04
合計ジャッジ時間 4,028 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,980 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 2 ms
6,980 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 65 ms
17,984 KB
testcase_08 AC 66 ms
17,856 KB
testcase_09 AC 68 ms
17,952 KB
testcase_10 AC 65 ms
17,736 KB
testcase_11 AC 67 ms
17,988 KB
testcase_12 AC 54 ms
11,532 KB
testcase_13 AC 53 ms
11,516 KB
testcase_14 AC 55 ms
11,664 KB
testcase_15 AC 58 ms
11,604 KB
testcase_16 AC 57 ms
11,556 KB
testcase_17 AC 63 ms
11,460 KB
testcase_18 AC 64 ms
11,460 KB
testcase_19 AC 63 ms
11,588 KB
testcase_20 AC 64 ms
11,460 KB
testcase_21 AC 61 ms
11,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

const int N = 100010;
using ll = long long;

int a[N], b[N];
std::vector<int> e[N];
ll dp[N][2];

void dfs(int u, int fa){
    dp[u][0] = a[u];
    for (auto v : e[u]){
        if (v == fa){
            continue;
        }
        dfs(v, u);
        dp[u][0] += std::max(dp[v][0], dp[v][1]);
        dp[u][1] += std::max(dp[v][0], dp[v][1] + b[u] + b[v]);
    }
}

int main(){
    int n;
    scanf("%d", &n);
    for (int i = 1; i <= n; ++ i){
        scanf("%d", &a[i]);
    }
    for (int i = 1; i <= n; ++ i){
        scanf("%d", &b[i]);
    }
    for (int i = 0, u, v; i < n - 1; ++ i){
        scanf("%d%d", &u, &v);
        e[u].emplace_back(v);
        e[v].emplace_back(u);
    }
    dfs(1, 0);
    printf("%lld\n", std::max(dp[1][0], dp[1][1]));
    return 0;
}
0