結果

問題 No.1817 Reversed Edges
ユーザー ikomaikoma
提出日時 2022-01-21 22:57:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 515 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 98,540 KB
最終ジャッジ日時 2024-11-26 02:11:16
合計ジャッジ時間 5,692 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 38 ms
52,480 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 190 ms
88,192 KB
testcase_08 AC 123 ms
82,432 KB
testcase_09 AC 177 ms
87,084 KB
testcase_10 AC 133 ms
82,840 KB
testcase_11 AC 159 ms
84,624 KB
testcase_12 AC 217 ms
89,180 KB
testcase_13 AC 214 ms
89,472 KB
testcase_14 AC 211 ms
89,500 KB
testcase_15 AC 216 ms
89,172 KB
testcase_16 AC 210 ms
89,428 KB
testcase_17 AC 211 ms
89,416 KB
testcase_18 AC 214 ms
89,308 KB
testcase_19 AC 216 ms
89,308 KB
testcase_20 AC 214 ms
89,576 KB
testcase_21 AC 209 ms
89,984 KB
testcase_22 AC 127 ms
98,540 KB
testcase_23 AC 129 ms
97,024 KB
testcase_24 AC 121 ms
88,960 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