結果

問題 No.277 根掘り葉掘り
ユーザー TawaraTawara
提出日時 2015-09-05 01:25:55
言語 Python2
(2.7.18)
結果
AC  
実行時間 571 ms / 3,000 ms
コード長 355 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 54,040 KB
最終ジャッジ日時 2024-07-19 03:19:21
合計ジャッジ時間 7,642 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,144 KB
testcase_01 AC 10 ms
6,144 KB
testcase_02 AC 9 ms
6,272 KB
testcase_03 AC 10 ms
6,272 KB
testcase_04 AC 9 ms
6,144 KB
testcase_05 AC 9 ms
6,272 KB
testcase_06 AC 9 ms
6,272 KB
testcase_07 AC 10 ms
6,272 KB
testcase_08 AC 9 ms
6,272 KB
testcase_09 AC 477 ms
29,596 KB
testcase_10 AC 519 ms
54,040 KB
testcase_11 AC 536 ms
37,260 KB
testcase_12 AC 544 ms
41,356 KB
testcase_13 AC 550 ms
39,764 KB
testcase_14 AC 552 ms
40,544 KB
testcase_15 AC 526 ms
38,448 KB
testcase_16 AC 539 ms
39,520 KB
testcase_17 AC 571 ms
39,344 KB
testcase_18 AC 542 ms
38,124 KB
testcase_19 AC 541 ms
38,676 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