結果

問題 No.763 Noelちゃんと木遊び
ユーザー Yukino DX.Yukino DX.
提出日時 2024-08-27 11:19:57
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 720 bytes
コンパイル時間 23,507 ms
コンパイル使用メモリ 402,888 KB
実行使用メモリ 24,064 KB
最終ジャッジ日時 2024-08-27 11:21:06
合計ジャッジ時間 25,298 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
24,064 KB
testcase_01 AC 9 ms
6,812 KB
testcase_02 AC 20 ms
10,880 KB
testcase_03 AC 13 ms
7,936 KB
testcase_04 AC 9 ms
6,944 KB
testcase_05 AC 14 ms
7,808 KB
testcase_06 AC 25 ms
12,628 KB
testcase_07 AC 24 ms
12,288 KB
testcase_08 AC 14 ms
8,192 KB
testcase_09 AC 9 ms
6,940 KB
testcase_10 AC 5 ms
6,944 KB
testcase_11 AC 31 ms
12,928 KB
testcase_12 AC 27 ms
11,776 KB
testcase_13 AC 22 ms
11,520 KB
testcase_14 AC 20 ms
10,624 KB
testcase_15 AC 14 ms
7,936 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 13 ms
7,936 KB
testcase_18 AC 25 ms
12,800 KB
testcase_19 AC 23 ms
11,776 KB
testcase_20 AC 24 ms
11,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::{input, marker::Usize1};

fn main() {
    input! {
        n:usize,
        uv:[(Usize1,Usize1);n-1],
    }

    let mut g = vec![vec![]; n];
    for &(u, v) in uv.iter() {
        g[u].push(v);
        g[v].push(u);
    }

    let mut dp = vec![[0; 2]; n];
    for i in 0..n {
        dp[i][1] = 1;
    }

    f(0, n, &g, &mut dp);
    let ans = dp[0][0].max(dp[0][1]);
    println!("{}", ans);
}

fn f(crr: usize, prv: usize, g: &Vec<Vec<usize>>, dp: &mut Vec<[usize; 2]>) {
    for &nxt in g[crr].iter() {
        if prv == nxt {
            continue;
        }

        f(nxt, crr, g, dp);
        dp[crr][0] += dp[nxt][0].max(dp[nxt][1]);
        dp[crr][1] += dp[nxt][0].max(dp[nxt][1] - 1);
    }
}
0