結果

問題 No.1817 Reversed Edges
ユーザー tobusakanatobusakana
提出日時 2022-12-31 08:03:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 896 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 104,756 KB
最終ジャッジ日時 2024-05-04 17:31:01
合計ジャッジ時間 6,864 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 38 ms
51,584 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 263 ms
87,608 KB
testcase_08 AC 177 ms
82,048 KB
testcase_09 AC 248 ms
86,912 KB
testcase_10 AC 183 ms
82,560 KB
testcase_11 AC 211 ms
84,604 KB
testcase_12 AC 309 ms
88,576 KB
testcase_13 AC 304 ms
89,320 KB
testcase_14 AC 301 ms
89,060 KB
testcase_15 AC 300 ms
89,088 KB
testcase_16 AC 299 ms
89,076 KB
testcase_17 AC 296 ms
89,052 KB
testcase_18 AC 318 ms
89,216 KB
testcase_19 AC 301 ms
88,960 KB
testcase_20 AC 297 ms
89,088 KB
testcase_21 AC 302 ms
89,216 KB
testcase_22 AC 194 ms
104,756 KB
testcase_23 AC 191 ms
103,580 KB
testcase_24 AC 167 ms
88,320 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