結果

問題 No.1817 Reversed Edges
ユーザー tobusakanatobusakana
提出日時 2022-12-31 08:05:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 832 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 105,152 KB
最終ジャッジ日時 2024-05-04 17:32:29
合計ジャッジ時間 6,192 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 35 ms
51,840 KB
testcase_07 AC 223 ms
87,424 KB
testcase_08 AC 180 ms
81,920 KB
testcase_09 AC 209 ms
87,296 KB
testcase_10 AC 160 ms
82,688 KB
testcase_11 AC 179 ms
84,224 KB
testcase_12 AC 236 ms
88,832 KB
testcase_13 AC 250 ms
89,216 KB
testcase_14 AC 241 ms
89,088 KB
testcase_15 AC 250 ms
88,704 KB
testcase_16 AC 247 ms
89,344 KB
testcase_17 AC 264 ms
89,216 KB
testcase_18 AC 293 ms
89,344 KB
testcase_19 AC 256 ms
89,088 KB
testcase_20 AC 239 ms
89,472 KB
testcase_21 AC 234 ms
88,960 KB
testcase_22 AC 179 ms
105,152 KB
testcase_23 AC 182 ms
103,680 KB
testcase_24 AC 167 ms
88,192 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