結果

問題 No.277 根掘り葉掘り
ユーザー TawaraTawara
提出日時 2015-09-05 01:27:08
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 360 ms / 3,000 ms
コード長 355 bytes
コンパイル時間 1,351 ms
コンパイル使用メモリ 76,544 KB
実行使用メモリ 118,412 KB
最終ジャッジ日時 2024-07-19 03:20:18
合計ジャッジ時間 7,079 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
75,648 KB
testcase_01 AC 87 ms
75,392 KB
testcase_02 AC 89 ms
75,648 KB
testcase_03 AC 89 ms
75,264 KB
testcase_04 AC 90 ms
75,648 KB
testcase_05 AC 90 ms
75,648 KB
testcase_06 AC 89 ms
75,776 KB
testcase_07 AC 89 ms
75,264 KB
testcase_08 AC 89 ms
75,648 KB
testcase_09 AC 309 ms
91,520 KB
testcase_10 AC 306 ms
118,412 KB
testcase_11 AC 340 ms
100,096 KB
testcase_12 AC 333 ms
105,856 KB
testcase_13 AC 360 ms
103,296 KB
testcase_14 AC 329 ms
100,608 KB
testcase_15 AC 336 ms
100,864 KB
testcase_16 AC 346 ms
101,248 KB
testcase_17 AC 328 ms
99,580 KB
testcase_18 AC 330 ms
99,328 KB
testcase_19 AC 318 ms
101,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
e = [[] for i in range(N)]
S = [N]*N
l = [(0,0)]
for i in range(N-1):
	x,y = map(int,raw_input().split())
	e[x-1]+=[y-1]
	e[y-1]+=[x-1]
for i in range(N):
	if len(e[i]) == 1:
		l+=[(i,i)]
d = 0
while l:
	nl = []
	for b,h in l:
		if d < S[h]:
			S[h] = d
			nl+=[(h,nxt) for nxt in e[h] if nxt != b]
	d+=1
	l = nl
for i in range(N):
	print S[i]
0