結果

問題 No.2598 Kadomatsu on Tree
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-12-18 19:43:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 853 ms / 2,000 ms
コード長 1,036 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 176,272 KB
最終ジャッジ日時 2024-09-27 17:14:01
合計ジャッジ時間 32,266 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,380 KB
testcase_01 AC 39 ms
54,172 KB
testcase_02 AC 38 ms
54,736 KB
testcase_03 AC 38 ms
55,388 KB
testcase_04 AC 35 ms
54,860 KB
testcase_05 AC 35 ms
55,184 KB
testcase_06 AC 36 ms
55,220 KB
testcase_07 AC 38 ms
54,120 KB
testcase_08 AC 38 ms
54,532 KB
testcase_09 AC 40 ms
54,248 KB
testcase_10 AC 40 ms
54,600 KB
testcase_11 AC 39 ms
55,464 KB
testcase_12 AC 37 ms
54,008 KB
testcase_13 AC 123 ms
79,372 KB
testcase_14 AC 120 ms
79,120 KB
testcase_15 AC 115 ms
78,960 KB
testcase_16 AC 115 ms
79,260 KB
testcase_17 AC 106 ms
78,704 KB
testcase_18 AC 124 ms
79,036 KB
testcase_19 AC 119 ms
79,268 KB
testcase_20 AC 119 ms
78,576 KB
testcase_21 AC 114 ms
78,992 KB
testcase_22 AC 109 ms
79,140 KB
testcase_23 AC 749 ms
170,888 KB
testcase_24 AC 752 ms
174,884 KB
testcase_25 AC 800 ms
175,120 KB
testcase_26 AC 775 ms
171,464 KB
testcase_27 AC 800 ms
171,760 KB
testcase_28 AC 786 ms
174,692 KB
testcase_29 AC 783 ms
176,272 KB
testcase_30 AC 770 ms
170,484 KB
testcase_31 AC 809 ms
175,728 KB
testcase_32 AC 826 ms
172,816 KB
testcase_33 AC 804 ms
175,820 KB
testcase_34 AC 785 ms
169,148 KB
testcase_35 AC 836 ms
170,124 KB
testcase_36 AC 825 ms
170,840 KB
testcase_37 AC 821 ms
175,240 KB
testcase_38 AC 834 ms
170,628 KB
testcase_39 AC 834 ms
170,572 KB
testcase_40 AC 831 ms
170,676 KB
testcase_41 AC 774 ms
170,100 KB
testcase_42 AC 798 ms
170,664 KB
testcase_43 AC 798 ms
170,312 KB
testcase_44 AC 803 ms
170,852 KB
testcase_45 AC 853 ms
170,156 KB
testcase_46 AC 845 ms
170,580 KB
testcase_47 AC 796 ms
170,316 KB
testcase_48 AC 748 ms
164,772 KB
testcase_49 AC 144 ms
84,088 KB
testcase_50 AC 487 ms
141,488 KB
testcase_51 AC 181 ms
93,708 KB
testcase_52 AC 263 ms
105,008 KB
testcase_53 AC 282 ms
122,912 KB
testcase_54 AC 255 ms
111,272 KB
testcase_55 AC 158 ms
90,444 KB
testcase_56 AC 399 ms
149,816 KB
testcase_57 AC 197 ms
103,316 KB
testcase_58 AC 725 ms
172,868 KB
testcase_59 AC 716 ms
174,900 KB
testcase_60 AC 746 ms
160,576 KB
testcase_61 AC 793 ms
170,196 KB
testcase_62 AC 752 ms
160,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
MOD=998244353
def pairs(arr):
    add=0
    squ=0
    for i in arr:
        add+=i
        squ+=i*i
    return (add*add-squ)//2
N=int(input())
tree=[set() for i in range(N)]
for i in range(N-1):
    U,V=map(int,input().split())
    tree[U-1].add(V-1)
    tree[V-1].add(U-1)
A=list(map(int,input().split()))
top=[]
vert=deque([0])
dp=[-1]*N
while len(vert)>0:
    pos=vert.popleft()
    top.append(pos)
    dp[pos]=0
    for i in tree[pos]:
        if dp[i]==-1:
            vert.append(i)
for i in reversed(top):
    for j in tree[i]:
        dp[i]+=dp[j]
    dp[i]+=1
ans=0
for i in range(N):
    rem=-1
    less=[]
    gre=[]
    for j in tree[i]:
        if dp[i]<dp[j]:
            rem=j
            continue
        if A[i]<A[j]:
            less.append(dp[j])
        elif A[i]>A[j]:
            gre.append(dp[j])
    if rem!=-1:
        if A[i]<A[rem]:
            less.append(N-dp[i])
        elif A[i]>A[rem]:
            gre.append(N-dp[i])
    ans+=pairs(less)+pairs(gre)
    ans%=MOD
print(ans)
0