結果

問題 No.1817 Reversed Edges
ユーザー lloyzlloyz
提出日時 2022-01-22 00:02:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 115,260 KB
最終ジャッジ日時 2024-05-04 17:35:51
合計ジャッジ時間 6,016 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,888 KB
testcase_01 AC 37 ms
53,888 KB
testcase_02 AC 38 ms
53,760 KB
testcase_03 AC 36 ms
53,632 KB
testcase_04 AC 38 ms
53,248 KB
testcase_05 AC 39 ms
53,376 KB
testcase_06 AC 37 ms
54,016 KB
testcase_07 AC 223 ms
104,248 KB
testcase_08 AC 148 ms
88,768 KB
testcase_09 AC 218 ms
103,996 KB
testcase_10 AC 151 ms
93,008 KB
testcase_11 AC 172 ms
95,860 KB
testcase_12 AC 244 ms
107,276 KB
testcase_13 AC 257 ms
107,792 KB
testcase_14 AC 270 ms
107,420 KB
testcase_15 AC 268 ms
107,540 KB
testcase_16 AC 259 ms
107,024 KB
testcase_17 AC 257 ms
107,540 KB
testcase_18 AC 247 ms
107,160 KB
testcase_19 AC 244 ms
107,420 KB
testcase_20 AC 245 ms
107,420 KB
testcase_21 AC 244 ms
107,400 KB
testcase_22 AC 173 ms
115,260 KB
testcase_23 AC 184 ms
113,704 KB
testcase_24 AC 182 ms
106,452 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