結果

問題 No.1221 木 *= 3
ユーザー phsplsphspls
提出日時 2022-11-11 00:44:48
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 1,460 bytes
コンパイル時間 12,679 ms
コンパイル使用メモリ 402,792 KB
実行使用メモリ 29,824 KB
最終ジャッジ日時 2024-09-13 01:24:55
合計ジャッジ時間 16,364 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 87 ms
29,824 KB
testcase_08 AC 82 ms
29,184 KB
testcase_09 AC 82 ms
29,696 KB
testcase_10 AC 84 ms
29,440 KB
testcase_11 AC 85 ms
29,440 KB
testcase_12 AC 72 ms
18,816 KB
testcase_13 AC 71 ms
18,688 KB
testcase_14 AC 71 ms
18,688 KB
testcase_15 AC 71 ms
18,560 KB
testcase_16 AC 74 ms
18,688 KB
testcase_17 AC 89 ms
18,164 KB
testcase_18 AC 85 ms
18,176 KB
testcase_19 AC 85 ms
18,228 KB
testcase_20 AC 85 ms
18,176 KB
testcase_21 AC 87 ms
18,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

const INF: isize = 1isize << 60;

fn dfs(cur: usize, prev: usize, paths: &Vec<Vec<usize>>, a: &Vec<isize>, b: &Vec<isize>, dp: &mut Vec<Vec<isize>>) {
    let mut used_score = 0isize;
    let mut unused_score = 0isize;
    for &v in paths[cur].iter() {
        if v == prev { continue; }
        dfs(v, cur, paths, a, b, dp);
        used_score += dp[v][0].max(dp[v][1] + b[v] + b[cur]);
        unused_score += dp[v][0].max(dp[v][1]);
    }
    dp[cur][0] = unused_score + a[cur];
    dp[cur][1] = used_score;
}

fn main() {
    let mut n = String::new();
    std::io::stdin().read_line(&mut n).ok();
    let n: usize = n.trim().parse().unwrap();
    let mut a = String::new();
    std::io::stdin().read_line(&mut a).ok();
    let a: Vec<isize> = a.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let mut b = String::new();
    std::io::stdin().read_line(&mut b).ok();
    let b: Vec<isize> = b.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let mut paths = vec![vec![]; n];
    for _ in 0..n-1 {
        let mut uv = String::new();
        std::io::stdin().read_line(&mut uv).ok();
        let uv: Vec<usize> = uv.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
        let u = uv[0]-1;
        let v = uv[1]-1;
        paths[u].push(v);
        paths[v].push(u);
    }

    let mut dp = vec![vec![-INF; 2]; n];
    dfs(0, 0, &paths, &a, &b, &mut dp);
    println!("{}", dp[0][0].max(dp[0][1]));
}
0