結果

問題 No.1817 Reversed Edges
ユーザー titiatitia
提出日時 2022-01-21 23:02:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,273 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 11,000 KB
実行使用メモリ 42,804 KB
最終ジャッジ日時 2023-08-17 07:30:55
合計ジャッジ時間 12,472 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
8,172 KB
testcase_01 AC 16 ms
8,372 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 15 ms
8,388 KB
testcase_05 WA -
testcase_06 AC 15 ms
8,232 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 468 ms
35,108 KB
testcase_23 AC 468 ms
35,068 KB
testcase_24 AC 495 ms
42,804 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]

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