結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー Yukino DX.Yukino DX.
提出日時 2024-08-27 15:40:52
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 857 bytes
コンパイル時間 14,680 ms
コンパイル使用メモリ 391,376 KB
実行使用メモリ 23,936 KB
最終ジャッジ日時 2024-08-27 15:41:10
合計ジャッジ時間 13,557 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 27 ms
13,312 KB
testcase_04 AC 27 ms
13,312 KB
testcase_05 AC 25 ms
13,312 KB
testcase_06 AC 26 ms
13,296 KB
testcase_07 AC 26 ms
13,184 KB
testcase_08 AC 16 ms
9,600 KB
testcase_09 AC 9 ms
6,940 KB
testcase_10 AC 9 ms
6,944 KB
testcase_11 AC 5 ms
6,944 KB
testcase_12 AC 14 ms
7,936 KB
testcase_13 AC 17 ms
9,088 KB
testcase_14 AC 17 ms
9,472 KB
testcase_15 AC 13 ms
7,424 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 25 ms
12,288 KB
testcase_19 AC 5 ms
6,948 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 13 ms
7,296 KB
testcase_22 AC 10 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 7 ms
6,940 KB
testcase_34 AC 33 ms
23,936 KB
testcase_35 AC 13 ms
11,264 KB
testcase_36 AC 3 ms
6,940 KB
testcase_37 AC 19 ms
12,800 KB
testcase_38 AC 17 ms
12,032 KB
testcase_39 AC 1 ms
6,940 KB
testcase_40 AC 1 ms
6,940 KB
testcase_41 AC 1 ms
6,940 KB
testcase_42 AC 1 ms
6,940 KB
testcase_43 AC 1 ms
6,944 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 childs = vec![0; n];
    let mut dp = vec![0; n];
    f(0, n, n, &g, &mut childs, &mut dp);
    let ans = dp.iter().sum::<usize>();
    println!("{}", ans);
}

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

        f(nxt, crr, n, g, childs, dp);
        childs[crr] += childs[nxt];
        dp[crr] += childs[nxt] * (n - childs[nxt]);
    }
    childs[crr] += 1;
    dp[crr] += (n - childs[crr]) * childs[crr];
    dp[crr] += n;
}
0