結果

問題 No.1817 Reversed Edges
ユーザー lloyzlloyz
提出日時 2022-01-22 00:02:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 115,340 KB
最終ジャッジ日時 2024-11-26 06:57:36
合計ジャッジ時間 6,697 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,784 KB
testcase_01 AC 39 ms
53,712 KB
testcase_02 AC 39 ms
53,940 KB
testcase_03 AC 40 ms
55,024 KB
testcase_04 AC 38 ms
55,060 KB
testcase_05 AC 42 ms
53,812 KB
testcase_06 AC 43 ms
54,496 KB
testcase_07 AC 245 ms
104,416 KB
testcase_08 AC 156 ms
88,640 KB
testcase_09 AC 235 ms
103,864 KB
testcase_10 AC 166 ms
92,884 KB
testcase_11 AC 206 ms
95,996 KB
testcase_12 AC 288 ms
107,284 KB
testcase_13 AC 267 ms
107,532 KB
testcase_14 AC 286 ms
107,164 KB
testcase_15 AC 292 ms
107,168 KB
testcase_16 AC 282 ms
107,404 KB
testcase_17 AC 275 ms
107,540 KB
testcase_18 AC 282 ms
107,404 KB
testcase_19 AC 266 ms
107,032 KB
testcase_20 AC 254 ms
107,552 KB
testcase_21 AC 266 ms
107,536 KB
testcase_22 AC 188 ms
115,340 KB
testcase_23 AC 180 ms
113,448 KB
testcase_24 AC 177 ms
105,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n = int(input())
edge = defaultdict(list)
for _ in range(n - 1):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    edge[a].append(b)
    edge[b].append(a)

D = [0 for _ in range(n)]
root_res = 0
seen = set([0])
Stack = [0]
while Stack:
    curr = Stack.pop()
    for np in edge[curr]:
        if np in seen:
            continue
        seen.add(np)
        Stack.append(np)
        D[np] = D[curr] + (1 if np > curr else -1)
        if np < curr:
            root_res += 1
for i in range(n):
    print(root_res + D[i])
0