結果

問題 No.2598 Kadomatsu on Tree
ユーザー titiatitia
提出日時 2024-01-01 17:41:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 650 ms / 2,000 ms
コード長 1,437 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,664 KB
実行使用メモリ 146,252 KB
最終ジャッジ日時 2024-09-27 17:26:12
合計ジャッジ時間 23,792 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,836 KB
testcase_01 AC 37 ms
53,684 KB
testcase_02 AC 37 ms
52,744 KB
testcase_03 AC 37 ms
52,128 KB
testcase_04 AC 35 ms
53,440 KB
testcase_05 AC 37 ms
53,076 KB
testcase_06 AC 37 ms
53,188 KB
testcase_07 AC 36 ms
52,820 KB
testcase_08 AC 37 ms
53,332 KB
testcase_09 AC 37 ms
52,316 KB
testcase_10 AC 39 ms
52,588 KB
testcase_11 AC 38 ms
52,536 KB
testcase_12 AC 37 ms
53,224 KB
testcase_13 AC 118 ms
78,288 KB
testcase_14 AC 117 ms
78,332 KB
testcase_15 AC 100 ms
77,324 KB
testcase_16 AC 118 ms
78,736 KB
testcase_17 AC 87 ms
77,036 KB
testcase_18 AC 113 ms
77,844 KB
testcase_19 AC 112 ms
78,804 KB
testcase_20 AC 94 ms
77,108 KB
testcase_21 AC 101 ms
77,152 KB
testcase_22 AC 110 ms
78,164 KB
testcase_23 AC 558 ms
135,924 KB
testcase_24 AC 548 ms
135,740 KB
testcase_25 AC 550 ms
135,436 KB
testcase_26 AC 554 ms
135,784 KB
testcase_27 AC 548 ms
136,156 KB
testcase_28 AC 561 ms
135,824 KB
testcase_29 AC 554 ms
135,828 KB
testcase_30 AC 538 ms
136,136 KB
testcase_31 AC 579 ms
135,912 KB
testcase_32 AC 601 ms
136,236 KB
testcase_33 AC 590 ms
134,948 KB
testcase_34 AC 547 ms
135,964 KB
testcase_35 AC 555 ms
133,796 KB
testcase_36 AC 588 ms
134,648 KB
testcase_37 AC 575 ms
134,568 KB
testcase_38 AC 579 ms
134,280 KB
testcase_39 AC 565 ms
133,860 KB
testcase_40 AC 576 ms
134,260 KB
testcase_41 AC 584 ms
134,388 KB
testcase_42 AC 575 ms
133,732 KB
testcase_43 AC 572 ms
134,080 KB
testcase_44 AC 557 ms
134,580 KB
testcase_45 AC 581 ms
133,788 KB
testcase_46 AC 559 ms
134,116 KB
testcase_47 AC 568 ms
134,272 KB
testcase_48 AC 589 ms
139,296 KB
testcase_49 AC 147 ms
82,720 KB
testcase_50 AC 427 ms
115,508 KB
testcase_51 AC 182 ms
90,696 KB
testcase_52 AC 258 ms
103,712 KB
testcase_53 AC 182 ms
113,212 KB
testcase_54 AC 165 ms
113,920 KB
testcase_55 AC 104 ms
85,204 KB
testcase_56 AC 234 ms
133,508 KB
testcase_57 AC 122 ms
95,716 KB
testcase_58 AC 456 ms
136,132 KB
testcase_59 AC 464 ms
135,780 KB
testcase_60 AC 650 ms
146,252 KB
testcase_61 AC 632 ms
139,684 KB
testcase_62 AC 590 ms
139,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=998244353

N=int(input())

E=[[] for i in range(N)]

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

A=list(map(int,input().split()))

# 木のHL分解+LCA

ROOT=0

QUE=[ROOT] 
Parent=[-1]*N
Parent[ROOT]=N # ROOTの親を定めておく.
Child=[[] for i in range(N)]
TOP_SORT=[] # トポロジカルソート

while QUE: # トポロジカルソートと同時に親を見つける
    x=QUE.pop()
    TOP_SORT.append(x)
    for to in E[x]:
        if Parent[to]==-1:
            Parent[to]=x
            Child[x].append(to)
            QUE.append(to)

Children=[1]*N

ANS=0

for x in TOP_SORT[::-1]: #(自分を含む)子ノードの数を調べる
    if x==ROOT:
        break
    Children[Parent[x]]+=Children[x]

for i in range(N):
    if Child[i]==[]:
        continue
    #if Parent[i]==N:
    #    continue
    LOW=[]
    HIGH=[]
    a=A[i]

    for c in Child[i]:
        if A[c]<a:
            LOW.append(Children[c])
        elif A[c]>a:
            HIGH.append(Children[c])

    p=Parent[i]
    if p!=N:
        if A[p]<a:
            LOW.append(N-Children[i])
        elif A[p]>a:
            HIGH.append(N-Children[i])

    #print(i,LOW,HIGH)

    S=sum(LOW)
    for l in LOW:
        S-=l
        ANS+=l*S

    S=sum(HIGH)
    for h in HIGH:
        S-=h
        ANS+=h*S

    ANS%=mod

print(ANS)
        

    
0