結果

問題 No.2949 Product on Tree
ユーザー titiatitia
提出日時 2024-10-25 23:19:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 826 ms / 2,000 ms
コード長 2,459 bytes
コンパイル時間 486 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 175,364 KB
最終ジャッジ日時 2024-10-25 23:20:52
合計ジャッジ時間 33,408 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,816 KB
testcase_01 AC 36 ms
53,108 KB
testcase_02 AC 37 ms
53,152 KB
testcase_03 AC 698 ms
144,092 KB
testcase_04 AC 668 ms
143,588 KB
testcase_05 AC 724 ms
144,672 KB
testcase_06 AC 695 ms
144,568 KB
testcase_07 AC 668 ms
143,940 KB
testcase_08 AC 725 ms
145,348 KB
testcase_09 AC 673 ms
144,840 KB
testcase_10 AC 702 ms
144,912 KB
testcase_11 AC 660 ms
144,572 KB
testcase_12 AC 723 ms
144,972 KB
testcase_13 AC 705 ms
144,612 KB
testcase_14 AC 678 ms
144,360 KB
testcase_15 AC 712 ms
144,960 KB
testcase_16 AC 710 ms
144,916 KB
testcase_17 AC 727 ms
145,300 KB
testcase_18 AC 691 ms
145,464 KB
testcase_19 AC 729 ms
145,760 KB
testcase_20 AC 737 ms
145,420 KB
testcase_21 AC 713 ms
141,628 KB
testcase_22 AC 715 ms
144,620 KB
testcase_23 AC 656 ms
145,416 KB
testcase_24 AC 742 ms
141,188 KB
testcase_25 AC 685 ms
145,436 KB
testcase_26 AC 728 ms
146,412 KB
testcase_27 AC 739 ms
140,800 KB
testcase_28 AC 683 ms
146,048 KB
testcase_29 AC 728 ms
141,064 KB
testcase_30 AC 707 ms
141,188 KB
testcase_31 AC 720 ms
142,980 KB
testcase_32 AC 732 ms
138,900 KB
testcase_33 AC 677 ms
141,044 KB
testcase_34 AC 714 ms
140,144 KB
testcase_35 AC 680 ms
141,052 KB
testcase_36 AC 701 ms
140,956 KB
testcase_37 AC 674 ms
140,296 KB
testcase_38 AC 707 ms
139,920 KB
testcase_39 AC 671 ms
141,052 KB
testcase_40 AC 733 ms
140,564 KB
testcase_41 AC 826 ms
140,540 KB
testcase_42 AC 700 ms
141,176 KB
testcase_43 AC 256 ms
139,552 KB
testcase_44 AC 291 ms
140,088 KB
testcase_45 AC 308 ms
172,644 KB
testcase_46 AC 289 ms
174,388 KB
testcase_47 AC 233 ms
144,336 KB
testcase_48 AC 322 ms
175,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=998244353

n=int(input())
A=list(map(int,input().split()))

E=[[] for i in range(n)]

for i in range(n-1):
    x,y=map(int,input().split())
    x-=1
    y-=1
    E[x].append(y)
    E[y].append(x)


ROOT=0
 
QUE=[ROOT] 
Parent=[-1]*n
Parent[ROOT]=n # ROOTの親を定めておく.
Child=[[] for i in range(n)]
TOP_SORT=[] # トポロジカルソート
 
while QUE: # トポロジカルソートと同時に親を見つける
    x=QUE.pop()
    TOP_SORT.append(x)
    for to in E[x]:
        if Parent[to]==-1:
            Parent[to]=x
            Child[x].append(to)
            QUE.append(to)
 
UP=[0]*n
DOWN=[0]*n
 
# xとParent[x]をつなぐedgeを考える
# UP[x]は、xをROOTとする部分木に関する値。
# xとつながるnodeのうち、Parent[x]以外をxの子と捉える。
 
# DOWN[x]はParent[x]をROOTとする部分木に関する値。
# Parent[x]とつながるnodeのうち、x以外をParent[x]の子と捉える。
 
def compose_calc(x,y):# 子たちの値を合成する
    return x+y
 
unit=0 # 単位元
 
def final_ans(x,value):# 子たちから計算した値から答えを出す
    return A[x]*value+A[x]
 
for x in TOP_SORT[::-1]:
    if Child[x]==[]:
        UP[x]=A[x]
        continue
    
    k=0
    for c in Child[x]:
        k=compose_calc(k,UP[c])
 
    UP[x]=final_ans(x,k)%mod
 
COMPOSE=[unit]*n
no_composed_value=0 #composeされないときの値
 
# DOWN[x]を求めるときに使う
# Parent[x]について、Parent[Parent[x]]以外からの寄与。
# 各iについて、for c in Child[i]についてUP[c]の値をみて、左右からの累積和を使って計算。
 
for i in range(n):
    X=[]
    for c in Child[i]:
        X.append(UP[c])
 
    if X==[]:
        continue
 
    LEFT=[X[0]]
    for j in range(1,len(X)):
        LEFT.append(compose_calc(LEFT[-1],X[j]))
 
    RIGHT=no_composed_value
    for j in range(len(X)-1,-1,-1):
        if j!=0:
            COMPOSE[Child[i][j]]=compose_calc(LEFT[j-1],RIGHT)
        else:
            COMPOSE[Child[i][j]]=RIGHT
 
        RIGHT=compose_calc(RIGHT,X[j])
 
for x in TOP_SORT:
    if x==ROOT:
        DOWN[x]=0
        continue
 
    p=Parent[x]
    
    k=compose_calc(DOWN[p],COMPOSE[x])

    #print(x,k)
 
    DOWN[x]=final_ans(p,k)%mod
 

ANS=0
for i in range(n):
    for c in Child[i]:
        ANS+=UP[c]*A[i]

    if i!=ROOT:
        ANS+=DOWN[i]*A[i]

print(ANS*pow(2,mod-2,mod)%mod)
        
0