結果

問題 No.827 総神童数
ユーザー phsplsphspls
提出日時 2022-12-22 01:53:47
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 1,403 bytes
コンパイル時間 10,709 ms
コンパイル使用メモリ 379,272 KB
実行使用メモリ 32,936 KB
最終ジャッジ日時 2024-11-18 03:13:07
合計ジャッジ時間 15,113 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 0 ms
6,816 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 138 ms
32,936 KB
testcase_10 AC 40 ms
11,648 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 19 ms
6,820 KB
testcase_13 AC 131 ms
27,520 KB
testcase_14 AC 5 ms
6,820 KB
testcase_15 AC 57 ms
12,032 KB
testcase_16 AC 102 ms
21,824 KB
testcase_17 AC 113 ms
26,644 KB
testcase_18 AC 55 ms
14,336 KB
testcase_19 AC 77 ms
17,248 KB
testcase_20 AC 53 ms
13,184 KB
testcase_21 AC 36 ms
10,112 KB
testcase_22 AC 58 ms
14,208 KB
testcase_23 AC 1 ms
6,820 KB
testcase_24 AC 73 ms
15,428 KB
testcase_25 AC 83 ms
12,288 KB
testcase_26 AC 64 ms
15,648 KB
testcase_27 AC 40 ms
11,136 KB
testcase_28 AC 39 ms
10,848 KB
testcase_29 AC 30 ms
8,960 KB
testcase_30 AC 9 ms
6,816 KB
testcase_31 AC 24 ms
7,424 KB
testcase_32 AC 23 ms
7,296 KB
testcase_33 AC 74 ms
16,704 KB
testcase_34 AC 107 ms
15,476 KB
testcase_35 AC 25 ms
7,552 KB
testcase_36 AC 34 ms
9,856 KB
testcase_37 AC 47 ms
12,288 KB
testcase_38 AC 70 ms
16,512 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 v == prev { 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 a = temp[0]-1;
        let b = temp[1]-1;
        paths[a].push(b);
        paths[b].push(a);
    }

    let mut depths = vec![0usize; n];
    dfs(0, 0, &paths, &mut depths);
    let total_pattern = (1..=n).fold(1usize, |x, y| x * y % MOD);
    let limit = depths.iter().max().unwrap()+2;
    let mut mods = vec![0usize; limit+1];
    for i in 1..=limit {
        mods[i] = power(i, MOD-2);
    }
    let result = total_pattern * ((0..n).map(|i| mods[depths[i]+1]).sum::<usize>() % MOD) % MOD;
    println!("{}", result);
}
0