結果

問題 No.2214 Products on Tree
ユーザー chineristACchineristAC
提出日時 2023-02-10 21:47:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 566 ms / 3,000 ms
コード長 1,213 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 152,720 KB
最終ジャッジ日時 2024-07-07 16:01:03
合計ジャッジ時間 14,946 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
89,216 KB
testcase_01 AC 135 ms
88,692 KB
testcase_02 AC 138 ms
88,804 KB
testcase_03 AC 526 ms
140,224 KB
testcase_04 AC 549 ms
144,392 KB
testcase_05 AC 487 ms
132,644 KB
testcase_06 AC 362 ms
123,768 KB
testcase_07 AC 211 ms
99,200 KB
testcase_08 AC 190 ms
93,524 KB
testcase_09 AC 215 ms
99,072 KB
testcase_10 AC 365 ms
118,264 KB
testcase_11 AC 251 ms
107,520 KB
testcase_12 AC 282 ms
109,124 KB
testcase_13 AC 554 ms
144,384 KB
testcase_14 AC 566 ms
144,332 KB
testcase_15 AC 552 ms
144,892 KB
testcase_16 AC 564 ms
144,952 KB
testcase_17 AC 565 ms
145,096 KB
testcase_18 AC 381 ms
130,972 KB
testcase_19 AC 412 ms
135,416 KB
testcase_20 AC 365 ms
131,620 KB
testcase_21 AC 279 ms
121,500 KB
testcase_22 AC 443 ms
148,120 KB
testcase_23 AC 137 ms
88,900 KB
testcase_24 AC 136 ms
88,960 KB
testcase_25 AC 136 ms
88,800 KB
testcase_26 AC 140 ms
88,832 KB
testcase_27 AC 133 ms
88,948 KB
testcase_28 AC 272 ms
131,240 KB
testcase_29 AC 225 ms
102,964 KB
testcase_30 AC 305 ms
146,700 KB
testcase_31 AC 434 ms
152,720 KB
testcase_32 AC 459 ms
149,296 KB
testcase_33 AC 303 ms
143,412 KB
testcase_34 AC 305 ms
143,676 KB
testcase_35 AC 429 ms
144,448 KB
testcase_36 AC 438 ms
144,240 KB
testcase_37 AC 304 ms
139,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import gcd
from fractions import Fraction

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

mod = 998244353

N = int(input())
edge = [[] for v in range(N)]

for _ in range(N-1):
    a,b = mi()
    edge[a-1].append(b-1)
    edge[b-1].append(a-1)

parent = [-1] * N
topo = []
deq = deque([0])
while deq:
    v = deq.popleft()
    topo.append(v)
    for nv in edge[v]:
        if nv == parent[v]:
            continue
        parent[nv] = v
        deq.append(nv)

dp = [[0,0] for v in range(N)]
for v in topo[::-1]:
    dp[v] = [1,1]
    for nv in edge[v]:
        if nv == parent[v]:
            continue

        a,b = dp[v]
        c,d = dp[nv]

        ndp = [0,0]

        """
        つなげる場合
        """
        ndp[0] += a * c % mod
        ndp[1] += b * c % mod + a * d % mod

        """
        つなげない場合
        """
        ndp[0] += a * (d) % mod
        ndp[1] += b * (d) % mod

        ndp[0] %= mod
        ndp[1] %= mod

        dp[v] = ndp


print(dp[0][1])


0