結果

問題 No.827 総神童数
ユーザー nebukuro09nebukuro09
提出日時 2019-05-03 22:00:41
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 334 ms / 2,000 ms
コード長 1,328 bytes
コンパイル時間 801 ms
コンパイル使用メモリ 118,128 KB
実行使用メモリ 35,784 KB
最終ジャッジ日時 2024-06-22 01:11:25
合計ジャッジ時間 10,120 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
6,816 KB
testcase_01 AC 108 ms
6,940 KB
testcase_02 AC 107 ms
6,944 KB
testcase_03 AC 107 ms
7,252 KB
testcase_04 AC 108 ms
6,944 KB
testcase_05 AC 106 ms
6,940 KB
testcase_06 AC 105 ms
6,944 KB
testcase_07 AC 107 ms
6,944 KB
testcase_08 AC 108 ms
6,948 KB
testcase_09 AC 309 ms
35,784 KB
testcase_10 AC 171 ms
18,728 KB
testcase_11 AC 107 ms
6,940 KB
testcase_12 AC 133 ms
14,904 KB
testcase_13 AC 273 ms
30,324 KB
testcase_14 AC 112 ms
8,652 KB
testcase_15 AC 168 ms
19,560 KB
testcase_16 AC 266 ms
24,016 KB
testcase_17 AC 326 ms
29,056 KB
testcase_18 AC 198 ms
20,864 KB
testcase_19 AC 331 ms
25,996 KB
testcase_20 AC 269 ms
15,480 KB
testcase_21 AC 219 ms
14,932 KB
testcase_22 AC 289 ms
18,108 KB
testcase_23 AC 109 ms
6,940 KB
testcase_24 AC 310 ms
22,144 KB
testcase_25 AC 256 ms
15,220 KB
testcase_26 AC 302 ms
23,732 KB
testcase_27 AC 231 ms
14,988 KB
testcase_28 AC 230 ms
14,868 KB
testcase_29 AC 200 ms
14,432 KB
testcase_30 AC 135 ms
12,624 KB
testcase_31 AC 179 ms
14,048 KB
testcase_32 AC 177 ms
13,936 KB
testcase_33 AC 334 ms
25,724 KB
testcase_34 AC 301 ms
21,788 KB
testcase_35 AC 184 ms
14,072 KB
testcase_36 AC 216 ms
14,640 KB
testcase_37 AC 250 ms
15,192 KB
testcase_38 AC 314 ms
25,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop;

immutable long MOD = 10^^9 + 7;
long[] F, G;

void main() {
    F = new long[](202020);
    G = new long[](202020);
    F[0] = F[1] = 1;
    foreach (i; 2..202020) F[i] = i * F[i-1] % MOD;
    foreach (i; 0..202020) G[i] = powmod(F[i], MOD-2, MOD);

    auto N = readln.chomp.to!int;
    auto G = new int[][](N);
    foreach (_; 0..N-1) {
        auto s = readln.split.map!(to!int);
        G[s[0]-1] ~= s[1]-1;
        G[s[1]-1] ~= s[0]-1;
    }
    auto depth = new int[](N);

    void dfs(int n, int p, int d) {
        depth[n] = d;
        foreach (m; G[n]) {
            if (m == p) continue;
            dfs(m, n, d+1);
        }
    }

    dfs(0, -1, 0);
    long ans = 0;

    foreach (i; 0..N) {
        int m = depth[i] + 1;
        (ans += comb(N, m) * F[m-1] % MOD * F[N-depth[i]-1] % MOD) %= MOD;
    }        

    ans.writeln;
}

long comb(long n, long k) {
    if (k > n) return 0;
    return F[n.to!int] * G[n.to!int-k.to!int] % MOD * G[k.to!int] % MOD;
}
 
long powmod(long a, long x, long m) {
    long ret = 1;
    while (x) {
        if (x % 2) ret = ret * a % m;
        a = a * a % m;
        x /= 2;
    }
    return ret;
}
0