結果

問題 No.2214 Products on Tree
ユーザー ShirotsumeShirotsume
提出日時 2022-11-25 04:53:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,470 ms / 3,000 ms
コード長 1,336 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 444,520 KB
最終ジャッジ日時 2024-10-07 08:57:14
合計ジャッジ時間 26,691 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,400 KB
testcase_01 AC 42 ms
54,016 KB
testcase_02 AC 42 ms
54,144 KB
testcase_03 AC 938 ms
158,116 KB
testcase_04 AC 957 ms
159,052 KB
testcase_05 AC 910 ms
151,432 KB
testcase_06 AC 676 ms
128,768 KB
testcase_07 AC 251 ms
92,192 KB
testcase_08 AC 202 ms
87,168 KB
testcase_09 AC 303 ms
98,304 KB
testcase_10 AC 624 ms
126,636 KB
testcase_11 AC 373 ms
104,320 KB
testcase_12 AC 431 ms
108,416 KB
testcase_13 AC 1,101 ms
162,088 KB
testcase_14 AC 992 ms
160,280 KB
testcase_15 AC 966 ms
160,804 KB
testcase_16 AC 988 ms
159,356 KB
testcase_17 AC 981 ms
157,216 KB
testcase_18 AC 673 ms
133,708 KB
testcase_19 AC 758 ms
140,380 KB
testcase_20 AC 672 ms
133,764 KB
testcase_21 AC 547 ms
120,448 KB
testcase_22 AC 952 ms
157,332 KB
testcase_23 AC 42 ms
53,632 KB
testcase_24 AC 42 ms
53,760 KB
testcase_25 AC 41 ms
54,272 KB
testcase_26 AC 42 ms
54,016 KB
testcase_27 AC 43 ms
53,888 KB
testcase_28 AC 993 ms
324,304 KB
testcase_29 AC 249 ms
97,532 KB
testcase_30 AC 696 ms
164,820 KB
testcase_31 AC 954 ms
164,984 KB
testcase_32 AC 989 ms
162,864 KB
testcase_33 AC 1,463 ms
444,520 KB
testcase_34 AC 1,470 ms
444,140 KB
testcase_35 AC 1,418 ms
305,408 KB
testcase_36 AC 1,425 ms
305,792 KB
testcase_37 AC 750 ms
157,328 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] = dp[now][1] = 1
        des = []
        for to in graph[now]:
            if to not in s:
                des.append(to)
                s.add(to)
                dfs(to)

        for to in des:
            dp[now][0] *= (dp[to][0] + dp[to][1])
            dp[now][0] %= mod

        P = dp[now][0]
        dp[now][1] = P
        for to in des:
            P *= pow(dp[to][0] + dp[to][1], mod - 2, mod)
            P %= mod
            P *= dp[to][1]
            P %= mod
            dp[now][1] += P
            dp[now][1] %= mod
            P *= pow(dp[to][1], mod - 2, mod)
            P %= mod
            P *= (dp[to][0] + dp[to][1])
            P %= mod
    dfs(0)
    return dp[0][1]
        


n = ii()

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

print(solve(n, AB))


0