結果

問題 No.2949 Product on Tree
ユーザー timitimi
提出日時 2024-11-04 14:51:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 697 ms / 2,000 ms
コード長 747 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 138,696 KB
最終ジャッジ日時 2024-11-04 14:52:15
合計ジャッジ時間 30,810 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
55,600 KB
testcase_01 AC 37 ms
54,780 KB
testcase_02 AC 38 ms
54,668 KB
testcase_03 AC 657 ms
134,428 KB
testcase_04 AC 644 ms
127,544 KB
testcase_05 AC 628 ms
133,620 KB
testcase_06 AC 657 ms
134,044 KB
testcase_07 AC 626 ms
135,912 KB
testcase_08 AC 655 ms
133,712 KB
testcase_09 AC 618 ms
133,792 KB
testcase_10 AC 643 ms
133,680 KB
testcase_11 AC 608 ms
133,840 KB
testcase_12 AC 595 ms
133,920 KB
testcase_13 AC 605 ms
134,628 KB
testcase_14 AC 613 ms
128,684 KB
testcase_15 AC 631 ms
129,056 KB
testcase_16 AC 614 ms
129,328 KB
testcase_17 AC 632 ms
135,852 KB
testcase_18 AC 596 ms
134,956 KB
testcase_19 AC 622 ms
134,360 KB
testcase_20 AC 601 ms
133,760 KB
testcase_21 AC 613 ms
133,992 KB
testcase_22 AC 613 ms
127,704 KB
testcase_23 AC 697 ms
134,032 KB
testcase_24 AC 650 ms
133,916 KB
testcase_25 AC 637 ms
134,056 KB
testcase_26 AC 676 ms
134,304 KB
testcase_27 AC 644 ms
133,904 KB
testcase_28 AC 647 ms
134,036 KB
testcase_29 AC 612 ms
134,176 KB
testcase_30 AC 653 ms
134,168 KB
testcase_31 AC 610 ms
134,028 KB
testcase_32 AC 642 ms
133,900 KB
testcase_33 AC 603 ms
134,044 KB
testcase_34 AC 659 ms
133,672 KB
testcase_35 AC 605 ms
134,060 KB
testcase_36 AC 638 ms
134,164 KB
testcase_37 AC 617 ms
134,060 KB
testcase_38 AC 614 ms
133,808 KB
testcase_39 AC 630 ms
133,668 KB
testcase_40 AC 670 ms
133,780 KB
testcase_41 AC 625 ms
133,784 KB
testcase_42 AC 602 ms
133,916 KB
testcase_43 AC 254 ms
123,956 KB
testcase_44 AC 277 ms
122,320 KB
testcase_45 AC 293 ms
138,696 KB
testcase_46 AC 293 ms
132,836 KB
testcase_47 AC 240 ms
112,940 KB
testcase_48 AC 301 ms
128,652 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)]
pp=pow(2,-1,mod)

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
    p%=mod;q%=mod;r%=mod
  dp[now][0]=A[now]+A[now]*p
  dp[now][1]=(((p**2)%mod-r)%mod)*pp*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