結果

問題 No.277 根掘り葉掘り
ユーザー rlangevinrlangevin
提出日時 2023-07-31 22:59:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 214 ms / 3,000 ms
コード長 567 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 92,144 KB
最終ジャッジ日時 2024-10-10 15:47:25
合計ジャッジ時間 4,240 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,660 KB
testcase_01 AC 41 ms
55,488 KB
testcase_02 AC 41 ms
55,120 KB
testcase_03 AC 42 ms
54,488 KB
testcase_04 AC 41 ms
55,732 KB
testcase_05 AC 41 ms
55,332 KB
testcase_06 AC 42 ms
54,144 KB
testcase_07 AC 41 ms
54,444 KB
testcase_08 AC 41 ms
54,820 KB
testcase_09 AC 183 ms
89,100 KB
testcase_10 AC 168 ms
92,144 KB
testcase_11 AC 202 ms
89,900 KB
testcase_12 AC 194 ms
90,320 KB
testcase_13 AC 214 ms
90,912 KB
testcase_14 AC 193 ms
89,940 KB
testcase_15 AC 203 ms
89,652 KB
testcase_16 AC 201 ms
89,792 KB
testcase_17 AC 193 ms
89,664 KB
testcase_18 AC 195 ms
89,532 KB
testcase_19 AC 201 ms
90,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N = int(input())
G = [[] for i in range(N)]
for i in range(N - 1):
    u, v = map(int, input().split())
    u, v = u - 1, v - 1
    G[u].append(v)
    G[v].append(u)
    
Q = deque()
dist = [-1] * N
Q.append(0)
dist[0] = 0
for i in range(1, N):
    if len(G[i]) == 1:
        Q.append(i)
        dist[i] = 0
        
while Q:
    u = Q.popleft()
    for v in G[u]:
        if dist[v] != -1:
            continue
        dist[v] = dist[u] + 1
        Q.append(v)
        
for d in dist:
    print(d)    
0