結果

問題 No.277 根掘り葉掘り
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-12 18:02:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 347 ms / 3,000 ms
コード長 478 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 105,672 KB
最終ジャッジ日時 2024-09-12 18:03:00
合計ジャッジ時間 5,515 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,016 KB
testcase_01 AC 38 ms
53,624 KB
testcase_02 AC 39 ms
52,680 KB
testcase_03 AC 39 ms
52,884 KB
testcase_04 AC 38 ms
53,260 KB
testcase_05 AC 39 ms
53,476 KB
testcase_06 AC 41 ms
54,320 KB
testcase_07 AC 40 ms
53,796 KB
testcase_08 AC 39 ms
53,016 KB
testcase_09 AC 255 ms
105,672 KB
testcase_10 AC 217 ms
103,428 KB
testcase_11 AC 263 ms
97,048 KB
testcase_12 AC 266 ms
99,640 KB
testcase_13 AC 347 ms
97,624 KB
testcase_14 AC 264 ms
96,352 KB
testcase_15 AC 272 ms
95,208 KB
testcase_16 AC 279 ms
96,820 KB
testcase_17 AC 292 ms
95,584 KB
testcase_18 AC 265 ms
95,096 KB
testcase_19 AC 261 ms
96,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
e=[[] for i in range(n)]
for i in range(n-1):
	a,b=map(int,input().split())
	a-=1
	b-=1
	e[a]+=[b]
	e[b]+=[a]
v=[0]*n
r=[0]*n
f=[0]*n
q=[0]
while len(q)>0:
	s=q[-1]
	if v[s]==0:
		v[s]=1
		for t in e[s]:
			if v[t]==0:
				q+=[t]
				r[t]=r[s]+1
				f[s]=1
	else:
		q.pop()
v=[0]*n
l=[0]*n
q=[]
for i in range(n):
	if f[i]==0:
		q+=[i]
		v[i]=1
for s in q:
	for t in e[s]:
		if v[t]==0:
			v[t]=1
			l[t]=l[s]+1
			q+=[t]
for i in range(n):
	print(min(r[i],l[i]))
0