結果

問題 No.1484 木に数を書き込む問題 / Just Write Numbers! 2
ユーザー cielciel
提出日時 2021-05-12 02:40:00
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 298 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 31,744 KB
最終ジャッジ日時 2024-09-22 08:42:35
合計ジャッジ時間 17,430 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,288 KB
testcase_01 AC 85 ms
12,160 KB
testcase_02 AC 85 ms
12,416 KB
testcase_03 AC 84 ms
12,160 KB
testcase_04 AC 100 ms
12,672 KB
testcase_05 AC 145 ms
13,440 KB
testcase_06 AC 146 ms
13,440 KB
testcase_07 AC 121 ms
12,928 KB
testcase_08 AC 159 ms
13,440 KB
testcase_09 AC 148 ms
13,568 KB
testcase_10 AC 142 ms
13,568 KB
testcase_11 AC 134 ms
13,312 KB
testcase_12 AC 128 ms
12,800 KB
testcase_13 AC 91 ms
12,544 KB
testcase_14 AC 728 ms
25,856 KB
testcase_15 AC 701 ms
25,728 KB
testcase_16 AC 629 ms
25,088 KB
testcase_17 AC 478 ms
21,632 KB
testcase_18 AC 764 ms
29,440 KB
testcase_19 AC 881 ms
30,336 KB
testcase_20 AC 900 ms
30,464 KB
testcase_21 AC 914 ms
30,464 KB
testcase_22 AC 902 ms
30,464 KB
testcase_23 AC 901 ms
30,592 KB
testcase_24 AC 885 ms
30,464 KB
testcase_25 AC 882 ms
30,336 KB
testcase_26 AC 882 ms
30,336 KB
testcase_27 AC 898 ms
30,464 KB
testcase_28 AC 893 ms
30,336 KB
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 766 ms
28,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

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