結果

問題 No.827 総神童数
ユーザー rutilicusrutilicus
提出日時 2020-10-18 11:22:42
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,069 ms / 2,000 ms
コード長 1,715 bytes
コンパイル時間 13,346 ms
コンパイル使用メモリ 438,400 KB
実行使用メモリ 113,628 KB
最終ジャッジ日時 2024-07-21 03:22:50
合計ジャッジ時間 42,570 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 315 ms
56,872 KB
testcase_01 AC 309 ms
56,948 KB
testcase_02 AC 315 ms
57,128 KB
testcase_03 AC 315 ms
56,816 KB
testcase_04 AC 315 ms
56,968 KB
testcase_05 AC 315 ms
56,924 KB
testcase_06 AC 310 ms
56,908 KB
testcase_07 AC 299 ms
56,636 KB
testcase_08 AC 309 ms
56,684 KB
testcase_09 AC 984 ms
112,020 KB
testcase_10 AC 694 ms
93,100 KB
testcase_11 AC 458 ms
61,008 KB
testcase_12 AC 589 ms
78,036 KB
testcase_13 AC 867 ms
103,240 KB
testcase_14 AC 477 ms
63,280 KB
testcase_15 AC 673 ms
93,012 KB
testcase_16 AC 865 ms
105,904 KB
testcase_17 AC 929 ms
112,464 KB
testcase_18 AC 725 ms
93,012 KB
testcase_19 AC 1,069 ms
113,628 KB
testcase_20 AC 897 ms
104,056 KB
testcase_21 AC 786 ms
101,440 KB
testcase_22 AC 936 ms
104,240 KB
testcase_23 AC 367 ms
57,296 KB
testcase_24 AC 1,007 ms
109,248 KB
testcase_25 AC 946 ms
104,128 KB
testcase_26 AC 1,022 ms
111,156 KB
testcase_27 AC 935 ms
104,132 KB
testcase_28 AC 950 ms
103,432 KB
testcase_29 AC 751 ms
95,508 KB
testcase_30 AC 573 ms
76,164 KB
testcase_31 AC 751 ms
93,492 KB
testcase_32 AC 705 ms
93,424 KB
testcase_33 AC 1,023 ms
113,272 KB
testcase_34 AC 982 ms
110,908 KB
testcase_35 AC 809 ms
93,376 KB
testcase_36 AC 749 ms
94,964 KB
testcase_37 AC 931 ms
104,124 KB
testcase_38 AC 1,006 ms
112,628 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:57:13: warning: 'appendln(Long): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
    builder.appendln(ans)
            ^

ソースコード

diff #

import java.util.ArrayDeque

fun main() {
    val builder = StringBuilder()

    val mod = 1000000007L

    // 解説読むとなんでこんな単純な数え上げもできないのかと嫌になりますね

    val n = readInputLine().toInt()
    val edges = Array(n) { mutableListOf<Int>() }

    repeat(n - 1) {
        val (u, v) = readInputLine().split(" ").map { it.toInt() - 1 }
        edges[u].add(v)
        edges[v].add(u)
    }

    // 1~nの階乗、逆元
    val factorial = LongArray(n + 1)
    val inverse = LongArray(n + 1)
    val factorialInverse = LongArray(n + 1)
    factorial[0] = 1L
    factorial[1] = 1L
    inverse[0] = 1L
    inverse[1] = 1L
    factorialInverse[0] = 1L
    factorialInverse[1] = 1L
    for (i in 2..n) {
        factorial[i] = (factorial[i - 1] * i.toLong() % mod)
        inverse[i] = (mod - inverse[mod.toInt() % i] * (mod / i.toLong()) % mod)
        factorialInverse[i] = (factorialInverse[i - 1] * inverse[i] % mod)
    }

    fun nCm(n: Int, m: Int): Long {
        return factorial[n] * (factorialInverse[m] * factorialInverse[n - m] % mod) % mod
    }

    // (node, parent, depth)
    val queue = ArrayDeque<Triple<Int, Int, Int>>()
    queue.add(Triple(0, -1, 1))

    var ans = 0L

    while (queue.isNotEmpty()) {
        val (node, parent, depth) = queue.poll()!!
        ans += nCm(n, depth) * factorial[depth - 1] % mod * factorial[n - depth]
        ans %= mod
        for (e in edges[node]) {
            if (e == parent) {
                continue
            }
            queue.add(Triple(e, node, depth + 1))
        }
    }

    builder.appendln(ans)

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0