結果

問題 No.277 根掘り葉掘り
ユーザー ああいいああいい
提出日時 2022-03-17 23:03:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 299 ms / 3,000 ms
コード長 665 bytes
コンパイル時間 1,584 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 99,136 KB
最終ジャッジ日時 2024-10-01 22:08:40
合計ジャッジ時間 4,743 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,992 KB
testcase_01 AC 41 ms
52,992 KB
testcase_02 AC 42 ms
53,504 KB
testcase_03 AC 45 ms
54,016 KB
testcase_04 AC 44 ms
54,016 KB
testcase_05 AC 43 ms
54,016 KB
testcase_06 AC 43 ms
54,016 KB
testcase_07 AC 43 ms
53,888 KB
testcase_08 AC 41 ms
53,632 KB
testcase_09 AC 245 ms
89,856 KB
testcase_10 AC 224 ms
99,136 KB
testcase_11 AC 265 ms
89,600 KB
testcase_12 AC 247 ms
90,240 KB
testcase_13 AC 299 ms
90,752 KB
testcase_14 AC 266 ms
90,624 KB
testcase_15 AC 258 ms
89,856 KB
testcase_16 AC 251 ms
89,856 KB
testcase_17 AC 238 ms
89,600 KB
testcase_18 AC 239 ms
89,912 KB
testcase_19 AC 256 ms
90,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
G = [[] for _ in range(N+1)]
for _ in range(N-1):
    x,y = map(int,input().split())
    G[x].append(y)
    G[y].append(x)

depth = [0] * (N +1)
dp = [-5] * (N +1)
stack = [(1,0)]
from collections import deque
q = deque()
while stack:
    now,parent = stack.pop()
    if now != 0 and len(G[now]) == 1:
        q.append(now)
        dp[now] = 0
    for v in G[now]:
        if v == parent:continue
        depth[v] = depth[now] + 1
        stack.append((v,now))

while q:
    now = q.popleft()
    for v in G[now]:
        if dp[v] == -5:
            dp[v] = dp[now] + 1
            q.append(v)
for i in range(1,N+1):
    print(min(depth[i],dp[i]))
0