結果

問題 No.277 根掘り葉掘り
ユーザー TawaraTawara
提出日時 2015-09-05 00:33:42
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,098 ms / 3,000 ms
コード長 405 bytes
コンパイル時間 39 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 161,440 KB
最終ジャッジ日時 2024-07-19 02:42:39
合計ジャッジ時間 7,617 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,816 KB
testcase_01 AC 9 ms
6,940 KB
testcase_02 AC 9 ms
6,944 KB
testcase_03 AC 9 ms
6,940 KB
testcase_04 AC 10 ms
6,940 KB
testcase_05 AC 9 ms
6,940 KB
testcase_06 AC 9 ms
6,944 KB
testcase_07 AC 10 ms
6,940 KB
testcase_08 AC 10 ms
6,944 KB
testcase_09 AC 839 ms
161,440 KB
testcase_10 AC 456 ms
27,676 KB
testcase_11 AC 472 ms
29,032 KB
testcase_12 AC 1,098 ms
117,012 KB
testcase_13 AC 528 ms
29,468 KB
testcase_14 AC 496 ms
37,792 KB
testcase_15 AC 571 ms
49,032 KB
testcase_16 AC 571 ms
38,020 KB
testcase_17 AC 524 ms
38,888 KB
testcase_18 AC 498 ms
33,680 KB
testcase_19 AC 462 ms
32,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(1000000)
def dfs(r,b,h,d):
	RL[h] = d
	if len(e[h]) == 1 and h != r:
		dfs(h,h,h,0)
	else:
		for nxt in e[h]:
			if nxt != b and d+1 < RL[nxt]:
				dfs(r,h,nxt,d+1)
N = input()
e = [[] for i in range(N)]
leaf = set([0])
RL = [N]*N
for i in range(N-1):
	x,y = map(int,raw_input().split())
	e[x-1].append(y-1)
	e[y-1].append(x-1)
dfs(0,0,0,0)
for i in range(N):
	print RL[i]
0