結果

問題 No.1817 Reversed Edges
ユーザー tobusakanatobusakana
提出日時 2022-12-31 08:05:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 328 ms / 2,000 ms
コード長 832 bytes
コンパイル時間 2,113 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 104,892 KB
最終ジャッジ日時 2024-11-26 06:53:28
合計ジャッジ時間 7,030 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,512 KB
testcase_01 AC 41 ms
52,556 KB
testcase_02 AC 40 ms
53,320 KB
testcase_03 AC 40 ms
52,892 KB
testcase_04 AC 40 ms
53,544 KB
testcase_05 AC 41 ms
52,272 KB
testcase_06 AC 42 ms
53,284 KB
testcase_07 AC 280 ms
87,732 KB
testcase_08 AC 181 ms
82,080 KB
testcase_09 AC 256 ms
86,664 KB
testcase_10 AC 194 ms
82,844 KB
testcase_11 AC 222 ms
84,316 KB
testcase_12 AC 314 ms
89,036 KB
testcase_13 AC 312 ms
88,804 KB
testcase_14 AC 304 ms
89,136 KB
testcase_15 AC 328 ms
89,004 KB
testcase_16 AC 321 ms
89,148 KB
testcase_17 AC 305 ms
89,076 KB
testcase_18 AC 313 ms
89,332 KB
testcase_19 AC 311 ms
88,916 KB
testcase_20 AC 306 ms
89,152 KB
testcase_21 AC 306 ms
89,056 KB
testcase_22 AC 197 ms
104,892 KB
testcase_23 AC 195 ms
103,508 KB
testcase_24 AC 174 ms
88,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 頂点0からの逆張り度をまず求める
# 隣の頂点に移動し、大きい数字に移動するなら逆張り度が1増え、小さい数字であれば1減る

N = int(input())
G = [[] for i in range(N)]
for _ in range(N - 1):
    A,B = map(int,input().split())
    G[A - 1].append(B - 1)
    G[B - 1].append(A - 1)
    
stack = []
stack.append([0, -1])
ans = [-1] * N
ans[0] = 0
while stack:
    v, p = stack.pop()
    if p > v:
        ans[0] += 1
    for child in G[v]:
        if child == p:
            continue
        stack.append([child, v])
        
stack = []
stack.append([0, -1])
while stack:
    v, p = stack.pop()
    for child in G[v]:
        if child == p:
            continue
        ans[child] = ans[v] + (1 if child > v else -1)
        stack.append([child, v])

for a in ans:
    print(a)


    
0