結果

問題 No.277 根掘り葉掘り
ユーザー cielciel
提出日時 2015-09-05 01:49:14
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 875 ms / 3,000 ms
コード長 648 bytes
コンパイル時間 1,858 ms
コンパイル使用メモリ 76,288 KB
実行使用メモリ 236,648 KB
最終ジャッジ日時 2024-07-19 03:34:38
合計ジャッジ時間 10,399 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
77,440 KB
testcase_01 AC 87 ms
77,696 KB
testcase_02 AC 89 ms
77,312 KB
testcase_03 AC 90 ms
77,440 KB
testcase_04 AC 90 ms
77,440 KB
testcase_05 AC 91 ms
77,184 KB
testcase_06 AC 89 ms
77,312 KB
testcase_07 AC 89 ms
77,568 KB
testcase_08 AC 92 ms
77,568 KB
testcase_09 AC 875 ms
236,648 KB
testcase_10 AC 340 ms
120,192 KB
testcase_11 AC 469 ms
116,736 KB
testcase_12 AC 723 ms
170,112 KB
testcase_13 AC 573 ms
115,840 KB
testcase_14 AC 585 ms
132,992 KB
testcase_15 AC 824 ms
138,112 KB
testcase_16 AC 548 ms
131,624 KB
testcase_17 AC 574 ms
123,896 KB
testcase_18 AC 531 ms
122,624 KB
testcase_19 AC 496 ms
118,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
from collections import defaultdict
import sys
if sys.version_info[0]>=3: raw_input=input
sys.setrecursionlimit(10**6)

def dfs(n,d,z):
	r=None
	for e in H[n]:
		if e not in z:
			z[e]=1
			if r is None: r=1<<29
			x=dfs(e,d+1,z)
			r=min(r,x+1)
			del z[e]
	if r is None: r=0
	R[n]=min(r,d)
	L[n]=r
	return r

def dfs2(n,d,z):
	for e in H[n]:
		if e not in z:
			z[e]=1
			dfs2(e,min(d,L[n])+1,z)
			del z[e]
	R[n]=min(R[n],d)

n=int(raw_input())
H=defaultdict(list)
R={}
L={}
for _ in range(n-1):
	x,y=map(int,raw_input().split())
	H[x].append(y)
	H[y].append(x)

dfs(1,0,{1:1})
dfs2(1,0,{1:1})
for i in range(1,n+1):print(R[i])
0