結果

問題 No.1484 木に数を書き込む問題 / Just Write Numbers! 2
ユーザー cielciel
提出日時 2021-05-12 02:40:10
言語 Crystal
(1.11.2)
結果
AC  
実行時間 442 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 13,462 ms
コンパイル使用メモリ 295,924 KB
実行使用メモリ 63,032 KB
最終ジャッジ日時 2024-09-22 08:43:35
合計ジャッジ時間 21,047 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 6 ms
6,940 KB
testcase_05 AC 19 ms
6,944 KB
testcase_06 AC 21 ms
6,940 KB
testcase_07 AC 13 ms
6,944 KB
testcase_08 AC 24 ms
6,944 KB
testcase_09 AC 23 ms
6,944 KB
testcase_10 AC 22 ms
6,944 KB
testcase_11 AC 18 ms
6,944 KB
testcase_12 AC 15 ms
6,940 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 292 ms
22,916 KB
testcase_15 AC 261 ms
20,764 KB
testcase_16 AC 239 ms
20,768 KB
testcase_17 AC 155 ms
16,256 KB
testcase_18 AC 346 ms
23,008 KB
testcase_19 AC 379 ms
29,692 KB
testcase_20 AC 391 ms
29,680 KB
testcase_21 AC 388 ms
29,608 KB
testcase_22 AC 374 ms
29,648 KB
testcase_23 AC 442 ms
29,552 KB
testcase_24 AC 375 ms
29,720 KB
testcase_25 AC 385 ms
29,688 KB
testcase_26 AC 379 ms
29,596 KB
testcase_27 AC 366 ms
29,768 KB
testcase_28 AC 399 ms
29,560 KB
testcase_29 AC 238 ms
63,032 KB
testcase_30 AC 239 ms
43,596 KB
testcase_31 AC 185 ms
30,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dfs(g,z,c)
	f=1
	r=[0,c]
	g[c].each{|e|
		next if e==z
		t=dfs(g,c,e)
		r=[r,[t[0]+f,t[1]]].max
	}
	r
end
def diameter(g)
	dfs(g,-1,dfs(g,-1,0)[1])[0]
end
n=gets.to_s.to_i
g=n.times.map{[0]*0}.to_a
(n-1).times{
	a,b=gets.to_s.split.map{|e|e.to_i}
	g[a-1]<<b-1
	g[b-1]<<a-1
}
p 2*~-n-diameter(g)
0