結果

問題 No.2047 Path Factory
ユーザー 箱星箱星
提出日時 2022-05-04 01:26:37
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 967 bytes
コンパイル時間 11,213 ms
コンパイル使用メモリ 439,904 KB
実行使用メモリ 96,196 KB
最終ジャッジ日時 2024-09-20 03:06:00
合計ジャッジ時間 29,260 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 276 ms
51,844 KB
testcase_01 AC 272 ms
51,648 KB
testcase_02 AC 271 ms
51,748 KB
testcase_03 AC 281 ms
51,604 KB
testcase_04 AC 276 ms
51,804 KB
testcase_05 AC 277 ms
51,672 KB
testcase_06 AC 283 ms
51,796 KB
testcase_07 AC 622 ms
91,744 KB
testcase_08 AC 601 ms
89,456 KB
testcase_09 AC 619 ms
90,360 KB
testcase_10 AC 685 ms
92,956 KB
testcase_11 AC 594 ms
89,476 KB
testcase_12 AC 526 ms
70,996 KB
testcase_13 AC 518 ms
71,532 KB
testcase_14 AC 600 ms
90,704 KB
testcase_15 AC 634 ms
91,696 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 463 ms
60,808 KB
testcase_23 AC 480 ms
62,732 KB
testcase_24 AC 475 ms
61,788 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 831 ms
94,352 KB
testcase_28 AC 658 ms
94,448 KB
testcase_29 AC 327 ms
52,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val n = readInt()
    val adj = Array(n) { mutableListOf<Int>() }
    for (i in 0 until n - 1) {
        val edge = readInts()
        val v1 = edge[0] - 1
        val v2 = edge[1] - 1
        adj[v1].add(v2)
        adj[v2].add(v1)
    }
    val mod = 998244353L
    val dp = Array(n) { LongArray(3) { 0 } }
    fun dfs(v: Int, par: Int) {
        var p = 1L
        var s = 0L
        var t = 0L
        for (w in adj[v]) {
            if (w != par) {
                dfs(w, v)
                t = (t * (dp[w][1] + dp[w][2]) + s * (dp[w][0] + dp[w][1])) % mod
                s = (s * (dp[w][1] + dp[w][2]) + p * (dp[w][0] + dp[w][1])) % mod
                p *= dp[w][1] + dp[w][2]
                p %= mod
            }
        }
        dp[v][0] = p
        dp[v][1] = s
        dp[v][2] = t
    }
    dfs(0, -1)
    println((dp[0][1] + dp[0][2]) % mod)
}

fun readInt() = readln().toInt()
fun readInts() = readln().split(" ").map { it.toInt() }
0