結果

問題 No.2214 Products on Tree
ユーザー roarisroaris
提出日時 2023-03-23 22:12:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,560 ms / 3,000 ms
コード長 866 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 446,680 KB
最終ジャッジ日時 2024-09-18 15:38:20
合計ジャッジ時間 20,561 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 581 ms
115,504 KB
testcase_04 AC 571 ms
117,376 KB
testcase_05 AC 561 ms
114,716 KB
testcase_06 AC 421 ms
103,640 KB
testcase_07 AC 186 ms
85,212 KB
testcase_08 AC 216 ms
83,840 KB
testcase_09 AC 207 ms
87,652 KB
testcase_10 AC 410 ms
102,912 KB
testcase_11 AC 247 ms
90,624 KB
testcase_12 AC 275 ms
93,092 KB
testcase_13 AC 629 ms
118,400 KB
testcase_14 AC 612 ms
117,820 KB
testcase_15 AC 601 ms
117,760 KB
testcase_16 AC 630 ms
118,280 KB
testcase_17 AC 636 ms
117,804 KB
testcase_18 AC 302 ms
111,368 KB
testcase_19 AC 323 ms
114,816 KB
testcase_20 AC 297 ms
110,592 KB
testcase_21 AC 241 ms
103,296 KB
testcase_22 AC 398 ms
126,080 KB
testcase_23 AC 39 ms
52,352 KB
testcase_24 AC 39 ms
52,096 KB
testcase_25 AC 41 ms
52,224 KB
testcase_26 AC 40 ms
51,968 KB
testcase_27 AC 39 ms
51,968 KB
testcase_28 AC 1,147 ms
372,736 KB
testcase_29 AC 138 ms
89,600 KB
testcase_30 AC 267 ms
161,832 KB
testcase_31 AC 427 ms
161,212 KB
testcase_32 AC 407 ms
143,360 KB
testcase_33 AC 1,560 ms
445,952 KB
testcase_34 AC 1,541 ms
446,680 KB
testcase_35 AC 1,447 ms
306,644 KB
testcase_36 AC 1,451 ms
305,892 KB
testcase_37 AC 265 ms
116,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(2*10**5+10)

def dfs(v, pv=-1):
    a, b = [], []
    
    for nv in G[v]:
        if nv==pv:
            continue
        
        dfs(nv, v)
        a.append(dp[nv][0])
        b.append(dp[nv][1])
    
    mult_l = [1]
    mult_r = [1]
    
    for i in range(len(a)):
        mult_l.append(mult_l[-1]*(a[i]+b[i])%MOD)
        mult_r.append(mult_r[-1]*(a[len(a)-1-i]+b[len(a)-1-i])%MOD)
        dp[v][0] = dp[v][0]*(a[i]+b[i])%MOD
        dp[v][1] = dp[v][1]*(a[i]+b[i])%MOD
    
    for i in range(len(a)):
        dp[v][1] = (dp[v][1]+mult_l[i]*mult_r[len(a)-1-i]%MOD*b[i]%MOD)%MOD

N = int(input())
G = [[] for _ in range(N)]

for _ in range(N-1):
    A, B = map(int, input().split())
    G[A-1].append(B-1)
    G[B-1].append(A-1)

dp = [[1]*2 for _ in range(N)]
MOD = 998244353
dfs(0)
print(dp[0][1])
0