結果

問題 No.1817 Reversed Edges
ユーザー ikomaikoma
提出日時 2022-01-21 22:57:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 515 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 98,532 KB
最終ジャッジ日時 2024-05-04 14:15:46
合計ジャッジ時間 5,430 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 44 ms
51,840 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 AC 38 ms
51,712 KB
testcase_07 AC 198 ms
88,192 KB
testcase_08 AC 125 ms
81,792 KB
testcase_09 AC 179 ms
87,464 KB
testcase_10 AC 131 ms
83,072 KB
testcase_11 AC 155 ms
84,992 KB
testcase_12 AC 212 ms
89,216 KB
testcase_13 AC 215 ms
89,600 KB
testcase_14 AC 220 ms
89,480 KB
testcase_15 AC 222 ms
89,728 KB
testcase_16 AC 212 ms
89,600 KB
testcase_17 AC 235 ms
89,344 KB
testcase_18 AC 225 ms
89,472 KB
testcase_19 AC 223 ms
89,472 KB
testcase_20 AC 220 ms
89,420 KB
testcase_21 AC 214 ms
89,600 KB
testcase_22 AC 136 ms
98,532 KB
testcase_23 AC 131 ms
97,280 KB
testcase_24 AC 125 ms
88,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

ans = 0
dif = [0]*N
visit = [0]*N

que = [0]

while que:
    v = que.pop()
    visit[v]=1
    for to in E[v]:
        if visit[to]:continue
        visit[to]=1
        que.append(to)
        if v>to:
            ans += 1
            dif[to]=dif[v]-1
        else:
            dif[to]=dif[v]+1

for d in dif:
    print(d+ans)
0