結果

問題 No.827 総神童数
ユーザー phsplsphspls
提出日時 2022-12-22 23:41:30
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 1,296 bytes
コンパイル時間 12,854 ms
コンパイル使用メモリ 402,316 KB
実行使用メモリ 32,948 KB
最終ジャッジ日時 2024-11-18 03:43:31
合計ジャッジ時間 18,815 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 200 ms
32,948 KB
testcase_10 AC 62 ms
11,776 KB
testcase_11 AC 3 ms
6,820 KB
testcase_12 AC 26 ms
6,820 KB
testcase_13 AC 152 ms
27,552 KB
testcase_14 AC 6 ms
6,820 KB
testcase_15 AC 57 ms
12,032 KB
testcase_16 AC 155 ms
22,392 KB
testcase_17 AC 188 ms
27,168 KB
testcase_18 AC 78 ms
14,464 KB
testcase_19 AC 221 ms
18,840 KB
testcase_20 AC 154 ms
14,232 KB
testcase_21 AC 102 ms
10,880 KB
testcase_22 AC 173 ms
15,384 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 189 ms
16,680 KB
testcase_25 AC 135 ms
13,220 KB
testcase_26 AC 189 ms
16,844 KB
testcase_27 AC 116 ms
11,904 KB
testcase_28 AC 117 ms
11,776 KB
testcase_29 AC 93 ms
9,856 KB
testcase_30 AC 24 ms
6,820 KB
testcase_31 AC 67 ms
8,064 KB
testcase_32 AC 64 ms
7,808 KB
testcase_33 AC 216 ms
18,336 KB
testcase_34 AC 182 ms
16,752 KB
testcase_35 AC 69 ms
8,192 KB
testcase_36 AC 103 ms
10,752 KB
testcase_37 AC 137 ms
13,196 KB
testcase_38 AC 203 ms
17,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

const MOD: usize = 1e9 as usize + 7;

fn power(base: usize, times: usize) -> usize {
    if times == 0 { return 1usize; }
    if times == 1 { return base; }
    let temp = power(base, times/2);
    temp * temp % MOD * power(base, times%2) % MOD
}

fn dfs(cur: usize, prev: usize, paths: &Vec<Vec<usize>>, depths: &mut Vec<usize>) {
    for &v in paths[cur].iter() {
        if prev == v { continue; }
        depths[v] = depths[cur] + 1;
        dfs(v, cur, paths, depths);
    }
}

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

    let mut depths = vec![0usize; n];
    dfs(0, 0, &paths, &mut depths);
    let total = (1..=n).fold(1usize, |x, y| x * y % MOD);
    let divs = (1..=n).map(|i| power(i, MOD-2)).collect::<Vec<_>>();
    let result = depths.iter().map(|&v| divs[v]).sum::<usize>() % MOD * total % MOD;
    println!("{}", result);
}
0