結果

問題 No.2214 Products on Tree
ユーザー ShirotsumeShirotsume
提出日時 2022-11-27 18:40:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,276 ms / 3,000 ms
コード長 1,398 bytes
コンパイル時間 569 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 470,380 KB
最終ジャッジ日時 2024-10-07 08:55:30
合計ジャッジ時間 20,883 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
56,024 KB
testcase_01 AC 42 ms
55,988 KB
testcase_02 AC 42 ms
54,860 KB
testcase_03 AC 669 ms
162,616 KB
testcase_04 AC 694 ms
162,940 KB
testcase_05 AC 650 ms
156,840 KB
testcase_06 AC 469 ms
129,484 KB
testcase_07 AC 194 ms
91,548 KB
testcase_08 AC 168 ms
87,016 KB
testcase_09 AC 234 ms
98,020 KB
testcase_10 AC 472 ms
129,124 KB
testcase_11 AC 278 ms
104,284 KB
testcase_12 AC 325 ms
109,104 KB
testcase_13 AC 725 ms
162,236 KB
testcase_14 AC 709 ms
164,680 KB
testcase_15 AC 690 ms
160,828 KB
testcase_16 AC 720 ms
160,968 KB
testcase_17 AC 716 ms
162,024 KB
testcase_18 AC 466 ms
134,152 KB
testcase_19 AC 524 ms
143,564 KB
testcase_20 AC 466 ms
136,480 KB
testcase_21 AC 360 ms
122,880 KB
testcase_22 AC 629 ms
160,096 KB
testcase_23 AC 42 ms
54,416 KB
testcase_24 AC 42 ms
54,232 KB
testcase_25 AC 42 ms
54,448 KB
testcase_26 AC 42 ms
55,820 KB
testcase_27 AC 42 ms
54,268 KB
testcase_28 AC 836 ms
368,596 KB
testcase_29 AC 184 ms
98,816 KB
testcase_30 AC 390 ms
191,224 KB
testcase_31 AC 686 ms
190,688 KB
testcase_32 AC 690 ms
173,400 KB
testcase_33 AC 1,205 ms
470,380 KB
testcase_34 AC 1,185 ms
470,040 KB
testcase_35 AC 1,276 ms
346,716 KB
testcase_36 AC 1,275 ms
348,352 KB
testcase_37 AC 422 ms
161,300 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
        frprod = [1]
        backprod = [1]
        for to in des:
            frprod.append(frprod[-1] * (dp[to][0] + dp[to][1]) % mod)
        for to in des[::-1]:
            backprod.append(backprod[-1] * (dp[to][0] + dp[to][1]) % mod)

        for i, to in enumerate(des):
            dp[now][1] += (dp[to][1] * frprod[i] % mod) * backprod[len(des) - i - 1] % mod
            dp[now][1] %= mod
    dfs(0)
    return dp[0][1]
        


n = ii()

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

print(solve(n, AB))


0