結果

問題 No.2949 Product on Tree
ユーザー nikoro256nikoro256
提出日時 2024-10-25 22:16:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 760 ms / 2,000 ms
コード長 1,259 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 154,412 KB
最終ジャッジ日時 2024-10-25 22:17:23
合計ジャッジ時間 34,274 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,540 KB
testcase_01 AC 46 ms
54,360 KB
testcase_02 AC 42 ms
54,716 KB
testcase_03 AC 699 ms
124,752 KB
testcase_04 AC 702 ms
123,344 KB
testcase_05 AC 689 ms
123,632 KB
testcase_06 AC 715 ms
123,472 KB
testcase_07 AC 684 ms
121,940 KB
testcase_08 AC 710 ms
124,252 KB
testcase_09 AC 721 ms
123,704 KB
testcase_10 AC 664 ms
122,796 KB
testcase_11 AC 713 ms
123,352 KB
testcase_12 AC 688 ms
122,640 KB
testcase_13 AC 678 ms
121,748 KB
testcase_14 AC 666 ms
121,496 KB
testcase_15 AC 680 ms
121,332 KB
testcase_16 AC 662 ms
121,280 KB
testcase_17 AC 695 ms
121,836 KB
testcase_18 AC 658 ms
121,740 KB
testcase_19 AC 713 ms
121,652 KB
testcase_20 AC 715 ms
122,708 KB
testcase_21 AC 682 ms
123,116 KB
testcase_22 AC 705 ms
121,520 KB
testcase_23 AC 734 ms
126,784 KB
testcase_24 AC 760 ms
124,880 KB
testcase_25 AC 741 ms
125,784 KB
testcase_26 AC 721 ms
125,756 KB
testcase_27 AC 742 ms
125,916 KB
testcase_28 AC 721 ms
125,780 KB
testcase_29 AC 733 ms
125,900 KB
testcase_30 AC 711 ms
125,648 KB
testcase_31 AC 724 ms
125,512 KB
testcase_32 AC 739 ms
125,512 KB
testcase_33 AC 703 ms
124,884 KB
testcase_34 AC 729 ms
124,616 KB
testcase_35 AC 708 ms
124,748 KB
testcase_36 AC 729 ms
124,224 KB
testcase_37 AC 736 ms
124,600 KB
testcase_38 AC 712 ms
124,628 KB
testcase_39 AC 744 ms
125,504 KB
testcase_40 AC 717 ms
125,504 KB
testcase_41 AC 742 ms
125,500 KB
testcase_42 AC 719 ms
124,604 KB
testcase_43 AC 299 ms
129,896 KB
testcase_44 AC 302 ms
134,952 KB
testcase_45 AC 355 ms
152,844 KB
testcase_46 AC 333 ms
147,056 KB
testcase_47 AC 264 ms
123,648 KB
testcase_48 AC 338 ms
154,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


def bfs(s):
    dq = deque()
    dq.append([s, 0])
    high = [10**9 for _ in range(N)]
    high[s] = 0
    re=[]
    while len(dq) != 0:
        p, h = dq.popleft()
        re.append(p)
        for e in edge[p]:
            if high[e] == 10**9:
                dq.append([e, h + 1])
                high[e] = h + 1
    return re


def extgcd(a, b):
    if b:
        d, y, x = extgcd(b, a % b)
        y -= (a // b) * x
        return d, x, y
    return a, 1, 0

#以下modinv
def mod_inv(a, m):
    g, x, y = extgcd(a, m)

    if g != 1:
        raise Exception()

    if x < 0:
        x += m

    return x

N=int(input())
A=list(map(int,input().split()))
edge=[[] for _ in range(N)]
for _ in range(N-1):
    u,v=map(int,input().split())
    edge[u-1].append(v-1)
    edge[v-1].append(u-1)
lis=bfs(0)
dp=[-1 for _ in range(N)]
ans=0
p=998244353
inv2=mod_inv(2,p)
for i in range(len(lis)-1,-1,-1):
    pos=lis[i]
    down=[]
    for e in edge[pos]:
        if dp[e]!=-1:
            down.append(dp[e])
    su=sum(down)
    if len(down)!=0:
        for d in down:
            ans+=d*A[pos]*2
            ans+=(su-d)*d*A[pos]
            ans%=p
    #print(i,pos,su,ans)
    dp[pos]=(su+1)*A[pos]%p
#print(lis)
print(ans*inv2%p)
0