結果

問題 No.1817 Reversed Edges
ユーザー titiatitia
提出日時 2022-01-21 23:26:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 694 ms / 2,000 ms
コード長 1,349 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 45,400 KB
最終ジャッジ日時 2024-05-04 15:01:53
合計ジャッジ時間 12,065 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 26 ms
11,008 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 26 ms
10,880 KB
testcase_07 AC 596 ms
40,084 KB
testcase_08 AC 262 ms
25,128 KB
testcase_09 AC 541 ms
38,436 KB
testcase_10 AC 306 ms
27,008 KB
testcase_11 AC 396 ms
31,712 KB
testcase_12 AC 674 ms
44,172 KB
testcase_13 AC 678 ms
44,152 KB
testcase_14 AC 673 ms
44,036 KB
testcase_15 AC 686 ms
44,036 KB
testcase_16 AC 683 ms
44,164 KB
testcase_17 AC 680 ms
44,044 KB
testcase_18 AC 661 ms
44,044 KB
testcase_19 AC 659 ms
44,164 KB
testcase_20 AC 668 ms
44,168 KB
testcase_21 AC 694 ms
44,044 KB
testcase_22 AC 465 ms
37,752 KB
testcase_23 AC 488 ms
37,756 KB
testcase_24 AC 523 ms
45,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

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




ROOT=0

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

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

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)

UP=[0]*N
DOWN=[0]*N

for x in TOP_SORT[::-1]:
    #print(x,Parent[x])
    if x==ROOT:
        k=0
    elif Parent[x]>x:
        k=1
    else:
        k=0
    
    for c in Child[x]:
        k+=UP[c]

    UP[x]=k

COMPOSE=[0]*N
for i in range(N):
    k=0
    for c in Child[i]:
        k+=UP[c]
    COMPOSE[i]=k

for x in TOP_SORT:
    #print(x)
    if x==ROOT:
        DOWN[x]=0
        continue

    p=Parent[x]

    if x>p:
        DOWN[x]=1+DOWN[p]+UP[p]-UP[x]
    else:
        DOWN[x]=DOWN[p]+UP[p]-UP[x]

    if p!=ROOT:
        q=Parent[p]

        if q>p:
            DOWN[x]-=1

ANS=[0]*N
# iをROOTとしたときの値は、
# for c in Child[i]についてのUP[c]とDOWN[i]から求められる。
for i in range(N):
    print(DOWN[i]+COMPOSE[i])
0