結果

問題 No.2047 Path Factory
ユーザー 箱星箱星
提出日時 2022-05-04 01:29:18
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,106 ms / 2,000 ms
コード長 1,054 bytes
コンパイル時間 11,287 ms
コンパイル使用メモリ 442,724 KB
実行使用メモリ 104,572 KB
最終ジャッジ日時 2024-10-15 13:29:48
合計ジャッジ時間 29,383 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
51,616 KB
testcase_01 AC 285 ms
51,908 KB
testcase_02 AC 292 ms
51,940 KB
testcase_03 AC 300 ms
51,996 KB
testcase_04 AC 285 ms
51,812 KB
testcase_05 AC 292 ms
51,772 KB
testcase_06 AC 293 ms
51,884 KB
testcase_07 AC 651 ms
90,536 KB
testcase_08 AC 627 ms
89,460 KB
testcase_09 AC 644 ms
88,664 KB
testcase_10 AC 683 ms
92,588 KB
testcase_11 AC 628 ms
89,416 KB
testcase_12 AC 558 ms
71,056 KB
testcase_13 AC 555 ms
71,400 KB
testcase_14 AC 638 ms
89,364 KB
testcase_15 AC 664 ms
90,304 KB
testcase_16 AC 578 ms
79,736 KB
testcase_17 AC 590 ms
79,516 KB
testcase_18 AC 628 ms
90,708 KB
testcase_19 AC 648 ms
94,096 KB
testcase_20 AC 670 ms
96,264 KB
testcase_21 AC 632 ms
91,688 KB
testcase_22 AC 465 ms
61,136 KB
testcase_23 AC 478 ms
63,056 KB
testcase_24 AC 471 ms
61,948 KB
testcase_25 AC 1,106 ms
104,572 KB
testcase_26 AC 1,071 ms
103,068 KB
testcase_27 AC 822 ms
94,288 KB
testcase_28 AC 644 ms
94,380 KB
testcase_29 AC 324 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun solve() {
    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 main() {
    Thread(null, {
        solve()
    }, "solve", 1.shl(26)).start()
}

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