結果

問題 No.2047 Path Factory
ユーザー 箱星箱星
提出日時 2022-05-23 15:20:46
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,154 ms / 2,000 ms
コード長 1,066 bytes
コンパイル時間 13,824 ms
コンパイル使用メモリ 436,136 KB
実行使用メモリ 103,520 KB
最終ジャッジ日時 2024-10-15 13:27:11
合計ジャッジ時間 32,498 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 290 ms
51,904 KB
testcase_01 AC 289 ms
52,088 KB
testcase_02 AC 288 ms
51,808 KB
testcase_03 AC 298 ms
51,992 KB
testcase_04 AC 284 ms
51,948 KB
testcase_05 AC 289 ms
51,672 KB
testcase_06 AC 288 ms
51,612 KB
testcase_07 AC 643 ms
90,312 KB
testcase_08 AC 623 ms
89,532 KB
testcase_09 AC 644 ms
88,856 KB
testcase_10 AC 702 ms
92,384 KB
testcase_11 AC 621 ms
89,464 KB
testcase_12 AC 531 ms
70,864 KB
testcase_13 AC 548 ms
71,472 KB
testcase_14 AC 640 ms
89,188 KB
testcase_15 AC 667 ms
90,484 KB
testcase_16 AC 588 ms
80,400 KB
testcase_17 AC 583 ms
79,816 KB
testcase_18 AC 629 ms
92,468 KB
testcase_19 AC 655 ms
92,736 KB
testcase_20 AC 738 ms
96,144 KB
testcase_21 AC 618 ms
92,188 KB
testcase_22 AC 460 ms
61,064 KB
testcase_23 AC 474 ms
63,524 KB
testcase_24 AC 486 ms
62,112 KB
testcase_25 AC 1,154 ms
103,520 KB
testcase_26 AC 1,057 ms
102,396 KB
testcase_27 AC 817 ms
94,332 KB
testcase_28 AC 672 ms
94,256 KB
testcase_29 AC 335 ms
52,636 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(n - 1, -1)
    println((dp[n - 1][1] + dp[n - 1][2]) % mod)
}

fun main() {
    Thread(null, {
        solve()
    }, "solve", 1.shl(26)).start()
}

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