結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,932 KB
testcase_01 AC 38 ms
52,420 KB
testcase_02 AC 40 ms
53,132 KB
testcase_03 AC 41 ms
53,336 KB
testcase_04 AC 40 ms
52,868 KB
testcase_05 AC 41 ms
52,464 KB
testcase_06 AC 40 ms
52,812 KB
testcase_07 AC 272 ms
87,848 KB
testcase_08 AC 176 ms
82,024 KB
testcase_09 AC 250 ms
87,168 KB
testcase_10 AC 185 ms
82,940 KB
testcase_11 AC 213 ms
84,144 KB
testcase_12 AC 319 ms
89,020 KB
testcase_13 AC 315 ms
89,220 KB
testcase_14 AC 324 ms
89,200 KB
testcase_15 AC 327 ms
88,840 KB
testcase_16 AC 306 ms
89,208 KB
testcase_17 AC 297 ms
88,916 KB
testcase_18 AC 303 ms
89,256 KB
testcase_19 AC 337 ms
88,856 KB
testcase_20 AC 313 ms
89,248 KB
testcase_21 AC 317 ms
89,124 KB
testcase_22 AC 197 ms
104,956 KB
testcase_23 AC 209 ms
103,812 KB
testcase_24 AC 180 ms
88,472 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])
val0 = 0
while stack:
    v, p = stack.pop()
    if p > v:
        val0 += 1
    for child in G[v]:
        if child == p:
            continue
        stack.append([child, v])
        
ans = [-1] * N
ans[0] = val0

stack = []
stack.append([0, -1])
while stack:
    v, p = stack.pop()
    for child in G[v]:
        if child == p:
            continue
        if child > v:
            ans[child] = ans[v] + 1
        else:
            ans[child] = ans[v] - 1
        stack.append([child, v])

for a in ans:
    print(a)


    
0