結果

問題 No.277 根掘り葉掘り
ユーザー terasaterasa
提出日時 2023-01-15 13:02:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 245 ms / 3,000 ms
コード長 1,372 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 101,760 KB
最終ジャッジ日時 2024-06-08 16:20:39
合計ジャッジ時間 4,619 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
68,096 KB
testcase_01 AC 64 ms
67,584 KB
testcase_02 AC 66 ms
67,584 KB
testcase_03 AC 67 ms
68,352 KB
testcase_04 AC 65 ms
68,096 KB
testcase_05 AC 66 ms
68,352 KB
testcase_06 AC 68 ms
68,480 KB
testcase_07 AC 65 ms
68,224 KB
testcase_08 AC 65 ms
67,968 KB
testcase_09 AC 219 ms
98,816 KB
testcase_10 AC 187 ms
101,760 KB
testcase_11 AC 227 ms
92,844 KB
testcase_12 AC 221 ms
95,232 KB
testcase_13 AC 245 ms
93,184 KB
testcase_14 AC 224 ms
93,568 KB
testcase_15 AC 239 ms
93,096 KB
testcase_16 AC 226 ms
92,960 KB
testcase_17 AC 234 ms
93,312 KB
testcase_18 AC 229 ms
92,876 KB
testcase_19 AC 220 ms
92,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from typing import List, Tuple, Callable, TypeVar, Optional
import sys
import itertools
import heapq
import bisect
import math
from collections import deque, defaultdict
from functools import lru_cache, cmp_to_key

input = sys.stdin.readline

if __file__ != 'prog.py':
    sys.setrecursionlimit(10 ** 6)


def readints(): return map(int, input().split())
def readlist(): return list(readints())
def readstr(): return input()[:-1]
def readlist1(): return list(map(lambda x: int(x) - 1, input().split()))


N = int(input())
E = [[] for _ in range(N)]
for _ in range(N - 1):
    u, v = readints()
    u -= 1
    v -= 1
    E[u].append(v)
    E[v].append(u)

R = [0] * N
is_leaf = [True] * N
stack = [(0, -1)]
while stack:
    v, p = stack.pop()
    if v < 0:
        v = ~v
        for dst in E[v]:
            if dst == p:
                continue
            is_leaf[v] = False
    else:
        if ~p:
            R[v] = R[p] + 1
        stack.append((~v, p))
        for dst in E[v]:
            if dst == p:
                continue
            stack.append((dst, v))

INF = 1 << 30
L = [INF] * N
dq = deque()
for i in range(N):
    if is_leaf[i]:
        L[i] = 0
        dq.append(i)
while dq:
    v = dq.popleft()
    for dst in E[v]:
        if L[dst] > L[v] + 1:
            L[dst] = L[v] + 1
            dq.append(dst)

for r, l in zip(R, L):
    print(min(r, l))
0