結果

問題 No.2214 Products on Tree
ユーザー ShirotsumeShirotsume
提出日時 2022-12-05 02:46:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,032 ms / 3,000 ms
コード長 1,072 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 344,496 KB
最終ジャッジ日時 2024-10-12 02:17:29
合計ジャッジ時間 20,160 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,720 KB
testcase_01 AC 41 ms
54,720 KB
testcase_02 AC 42 ms
54,696 KB
testcase_03 AC 669 ms
161,732 KB
testcase_04 AC 628 ms
160,724 KB
testcase_05 AC 805 ms
159,432 KB
testcase_06 AC 432 ms
130,780 KB
testcase_07 AC 156 ms
92,620 KB
testcase_08 AC 120 ms
86,672 KB
testcase_09 AC 180 ms
97,484 KB
testcase_10 AC 397 ms
130,500 KB
testcase_11 AC 218 ms
104,916 KB
testcase_12 AC 326 ms
110,168 KB
testcase_13 AC 632 ms
163,872 KB
testcase_14 AC 634 ms
164,716 KB
testcase_15 AC 638 ms
164,700 KB
testcase_16 AC 666 ms
164,060 KB
testcase_17 AC 660 ms
163,340 KB
testcase_18 AC 384 ms
133,536 KB
testcase_19 AC 435 ms
138,988 KB
testcase_20 AC 379 ms
131,648 KB
testcase_21 AC 296 ms
119,792 KB
testcase_22 AC 517 ms
155,980 KB
testcase_23 AC 42 ms
54,568 KB
testcase_24 AC 40 ms
54,076 KB
testcase_25 AC 41 ms
54,524 KB
testcase_26 AC 42 ms
55,368 KB
testcase_27 AC 41 ms
53,880 KB
testcase_28 AC 684 ms
270,384 KB
testcase_29 AC 148 ms
96,448 KB
testcase_30 AC 343 ms
159,444 KB
testcase_31 AC 509 ms
157,468 KB
testcase_32 AC 533 ms
157,380 KB
testcase_33 AC 898 ms
343,980 KB
testcase_34 AC 932 ms
344,496 KB
testcase_35 AC 1,017 ms
257,816 KB
testcase_36 AC 1,032 ms
258,912 KB
testcase_37 AC 415 ms
163,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
sys.setrecursionlimit(5 * 10 ** 5)
from pypyjit import set_param
set_param('max_unroll_recursion=-1')
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

def solve(n, AB):
    dp = [[0] * 2 for _ in range(n)]
    s = set()
    graph = [[] for _ in range(n)]
    for a, b in AB:
        graph[a - 1].append(b - 1)
        graph[b - 1].append(a - 1)
    s.add(0)
    def dfs(now):
        dp[now][0] = 1
        dp[now][1] = 1
        for to in graph[now]:
            if to not in s:
                s.add(to)
                dfs(to)
                nc = [0, 0]
                nc[0] = dp[now][0] * (dp[to][0] + dp[to][1])
                nc[0] %= mod
                nc[1] = dp[now][0] * dp[to][1] + dp[now][1] * (dp[to][0] + dp[to][1])
                nc[1] %= mod
                dp[now] = nc
    dfs(0)
    return dp[0][1]
        


n = ii()

AB = [li() for _ in range(n - 1)]

print(solve(n, AB))


0