結果

問題 No.2949 Product on Tree
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-25 21:54:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 689 ms / 2,000 ms
コード長 741 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 128,516 KB
最終ジャッジ日時 2024-10-25 21:55:15
合計ジャッジ時間 30,127 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,084 KB
testcase_01 AC 37 ms
52,504 KB
testcase_02 AC 36 ms
53,836 KB
testcase_03 AC 618 ms
115,336 KB
testcase_04 AC 554 ms
109,128 KB
testcase_05 AC 608 ms
115,624 KB
testcase_06 AC 575 ms
115,680 KB
testcase_07 AC 596 ms
114,884 KB
testcase_08 AC 586 ms
116,140 KB
testcase_09 AC 616 ms
115,956 KB
testcase_10 AC 585 ms
115,880 KB
testcase_11 AC 602 ms
115,884 KB
testcase_12 AC 628 ms
118,076 KB
testcase_13 AC 613 ms
119,024 KB
testcase_14 AC 634 ms
110,364 KB
testcase_15 AC 620 ms
111,152 KB
testcase_16 AC 651 ms
112,060 KB
testcase_17 AC 639 ms
124,164 KB
testcase_18 AC 662 ms
124,680 KB
testcase_19 AC 671 ms
124,708 KB
testcase_20 AC 639 ms
126,184 KB
testcase_21 AC 681 ms
126,304 KB
testcase_22 AC 612 ms
113,068 KB
testcase_23 AC 629 ms
116,000 KB
testcase_24 AC 586 ms
116,108 KB
testcase_25 AC 602 ms
116,260 KB
testcase_26 AC 620 ms
115,736 KB
testcase_27 AC 590 ms
116,364 KB
testcase_28 AC 626 ms
116,500 KB
testcase_29 AC 592 ms
116,352 KB
testcase_30 AC 641 ms
116,612 KB
testcase_31 AC 608 ms
117,400 KB
testcase_32 AC 617 ms
118,160 KB
testcase_33 AC 642 ms
121,116 KB
testcase_34 AC 653 ms
124,924 KB
testcase_35 AC 671 ms
126,744 KB
testcase_36 AC 659 ms
126,084 KB
testcase_37 AC 686 ms
126,976 KB
testcase_38 AC 648 ms
126,728 KB
testcase_39 AC 688 ms
126,468 KB
testcase_40 AC 659 ms
128,512 KB
testcase_41 AC 653 ms
125,848 KB
testcase_42 AC 689 ms
128,516 KB
testcase_43 AC 242 ms
106,736 KB
testcase_44 AC 250 ms
109,308 KB
testcase_45 AC 305 ms
127,948 KB
testcase_46 AC 269 ms
114,508 KB
testcase_47 AC 219 ms
102,808 KB
testcase_48 AC 277 ms
114,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
e=[[] for i in range(n)]
for i in range(n-1):
  u,v=map(int,input().split())
  u-=1
  v-=1
  e[u]+=[v]
  e[v]+=[u]
M=998244353
i2=pow(2,M-2,M)
u=[0]*n
v=[0]*n
q=[0]
ans=0
while len(q)>0:
  s=q[-1]
  if v[s]==0:
    v[s]=1
    for t in e[s]:
      if v[t]==0:
        q+=[t]
  else:
    f=0
    for t in e[s]:
      if v[t]==0:
        f=1
        u[s]+=u[t]*a[s]
        u[s]%=M
    u[s]+=a[s]
    u[s]%=M
    ans+=u[s]
    ans%=M
    a2=0
    for t in e[s]:
      if v[t]==0:
        a2+=u[t]
        a2%=M
    a2=a2**2
    for t in e[s]:
      if v[t]==0:
        a2-=u[t]**2
        a2%=M
    a2*=i2
    a2%=M
    ans+=a2*a[s]
    ans%=M
    v[s]=0
    q.pop()
ans-=sum(a)
ans%=M
print(ans)
0