結果

問題 No.1817 Reversed Edges
ユーザー titia
提出日時 2022-01-21 22:31:44
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 840 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 41,216 KB
最終ジャッジ日時 2024-11-26 01:26:30
合計ジャッジ時間 10,383 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 3 WA * 20
権限があれば一括ダウンロードができます

ソースコード

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)

ANS=0
SUMS=[0]*N

for x in TOP_SORT[1:][::-1]:
    y=Parent[x]
    if x>y:
        SUMS[x]+=1
    else:
        ANS+=1
        SUMS[x]-=1

for x in TOP_SORT[1:][::-1]:
    y=Parent[x]

    SUMS[x]+=SUMS[y]

for i in range(N):
    print(ANS+SUMS[i])
0