結果

問題 No.277 根掘り葉掘り
ユーザー TawaraTawara
提出日時 2015-09-05 01:48:04
言語 Python2
(2.7.18)
結果
AC  
実行時間 734 ms / 3,000 ms
コード長 343 bytes
コンパイル時間 604 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 54,076 KB
最終ジャッジ日時 2024-06-06 03:16:05
合計ジャッジ時間 10,263 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,400 KB
testcase_01 AC 11 ms
6,272 KB
testcase_02 AC 11 ms
6,400 KB
testcase_03 AC 12 ms
6,400 KB
testcase_04 AC 12 ms
6,400 KB
testcase_05 AC 12 ms
6,272 KB
testcase_06 AC 12 ms
6,272 KB
testcase_07 AC 12 ms
6,272 KB
testcase_08 AC 12 ms
6,400 KB
testcase_09 AC 622 ms
30,880 KB
testcase_10 AC 638 ms
54,076 KB
testcase_11 AC 702 ms
37,136 KB
testcase_12 AC 706 ms
41,228 KB
testcase_13 AC 734 ms
39,772 KB
testcase_14 AC 704 ms
40,548 KB
testcase_15 AC 689 ms
38,456 KB
testcase_16 AC 705 ms
39,272 KB
testcase_17 AC 711 ms
39,476 KB
testcase_18 AC 681 ms
38,256 KB
testcase_19 AC 687 ms
38,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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