結果

問題 No.2949 Product on Tree
ユーザー timitimi
提出日時 2024-11-04 14:49:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 990 ms / 2,000 ms
コード長 721 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 154,452 KB
最終ジャッジ日時 2024-11-04 14:50:39
合計ジャッジ時間 39,190 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,132 KB
testcase_01 AC 42 ms
53,692 KB
testcase_02 AC 43 ms
55,948 KB
testcase_03 AC 904 ms
142,460 KB
testcase_04 AC 807 ms
133,800 KB
testcase_05 AC 870 ms
142,724 KB
testcase_06 AC 835 ms
142,860 KB
testcase_07 AC 815 ms
143,576 KB
testcase_08 AC 825 ms
143,148 KB
testcase_09 AC 817 ms
142,844 KB
testcase_10 AC 817 ms
142,892 KB
testcase_11 AC 799 ms
142,900 KB
testcase_12 AC 793 ms
142,864 KB
testcase_13 AC 805 ms
142,840 KB
testcase_14 AC 782 ms
134,428 KB
testcase_15 AC 818 ms
134,164 KB
testcase_16 AC 818 ms
134,828 KB
testcase_17 AC 785 ms
145,052 KB
testcase_18 AC 811 ms
143,920 KB
testcase_19 AC 810 ms
143,788 KB
testcase_20 AC 779 ms
143,992 KB
testcase_21 AC 814 ms
144,780 KB
testcase_22 AC 781 ms
134,460 KB
testcase_23 AC 871 ms
143,244 KB
testcase_24 AC 825 ms
144,680 KB
testcase_25 AC 863 ms
144,552 KB
testcase_26 AC 864 ms
144,904 KB
testcase_27 AC 814 ms
143,364 KB
testcase_28 AC 857 ms
144,804 KB
testcase_29 AC 857 ms
143,768 KB
testcase_30 AC 813 ms
143,516 KB
testcase_31 AC 840 ms
145,036 KB
testcase_32 AC 817 ms
143,904 KB
testcase_33 AC 862 ms
145,180 KB
testcase_34 AC 822 ms
145,804 KB
testcase_35 AC 795 ms
146,052 KB
testcase_36 AC 804 ms
146,464 KB
testcase_37 AC 832 ms
146,216 KB
testcase_38 AC 829 ms
146,204 KB
testcase_39 AC 828 ms
146,188 KB
testcase_40 AC 793 ms
146,448 KB
testcase_41 AC 812 ms
146,472 KB
testcase_42 AC 990 ms
146,324 KB
testcase_43 AC 288 ms
124,172 KB
testcase_44 AC 303 ms
122,232 KB
testcase_45 AC 355 ms
154,452 KB
testcase_46 AC 329 ms
132,820 KB
testcase_47 AC 268 ms
113,376 KB
testcase_48 AC 316 ms
128,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
D=[[] for i in range(N)]
for i in range(N-1):
  u,v=map(int, input().split())
  u-=1;v-=1
  D[u].append(v);D[v].append(u)

from collections import deque
d=deque()
V=[-1]*N
d.append(0);V[0]=1

C=[]
while d:
  now=d.popleft()
  C.append(now)
  for nex in D[now]:
    if V[nex]==-1:
      V[nex]=1
      d.append(nex)

mod=998244353
dp=[[0]*2 for i in range(N)]
for now in C[::-1]:
  p=0;q=1;r=0
  for nex in D[now]:
    d=dp[nex][0]
    p+=d;q*=d;r+=d**2
    q%=mod;r%=mod
  dp[now][0]=A[now]+A[now]*p
  dp[now][1]=(p**2-r)*pow(2,-1,mod)*A[now]
  dp[now][0]%=mod
  dp[now][1]%=mod
  
ans=0
for i in range(N):
  x,y=dp[i]
  ans+=x
  ans+=y 
  ans-=A[i]
  ans%=mod 
print(ans)
0