結果

問題 No.1473 おでぶなおばけさん
ユーザー 小野寺健小野寺健
提出日時 2021-10-31 09:57:19
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 583 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 47,396 KB
最終ジャッジ日時 2024-10-08 11:23:13
合計ジャッジ時間 35,846 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
17,408 KB
testcase_01 AC 83 ms
12,160 KB
testcase_02 AC 1,095 ms
44,672 KB
testcase_03 AC 1,427 ms
44,032 KB
testcase_04 AC 449 ms
27,776 KB
testcase_05 AC 283 ms
20,864 KB
testcase_06 AC 1,730 ms
43,520 KB
testcase_07 AC 670 ms
44,288 KB
testcase_08 AC 670 ms
44,160 KB
testcase_09 AC 671 ms
44,288 KB
testcase_10 AC 820 ms
24,448 KB
testcase_11 AC 993 ms
24,192 KB
testcase_12 AC 1,038 ms
24,448 KB
testcase_13 AC 484 ms
20,096 KB
testcase_14 AC 365 ms
17,792 KB
testcase_15 AC 639 ms
22,912 KB
testcase_16 AC 855 ms
23,936 KB
testcase_17 AC 124 ms
12,800 KB
testcase_18 AC 159 ms
13,184 KB
testcase_19 AC 974 ms
31,232 KB
testcase_20 AC 1,243 ms
39,808 KB
testcase_21 AC 1,058 ms
37,120 KB
testcase_22 AC 524 ms
41,216 KB
testcase_23 AC 513 ms
32,640 KB
testcase_24 AC 509 ms
32,768 KB
testcase_25 AC 562 ms
38,144 KB
testcase_26 AC 580 ms
38,912 KB
testcase_27 AC 244 ms
19,968 KB
testcase_28 AC 797 ms
44,032 KB
testcase_29 AC 1,124 ms
39,424 KB
testcase_30 AC 1,465 ms
43,776 KB
testcase_31 AC 761 ms
44,800 KB
testcase_32 AC 1,840 ms
45,184 KB
testcase_33 AC 1,043 ms
39,552 KB
testcase_34 AC 453 ms
27,008 KB
testcase_35 AC 623 ms
27,264 KB
testcase_36 AC 433 ms
28,544 KB
testcase_37 AC 493 ms
30,976 KB
testcase_38 AC 150 ms
15,488 KB
testcase_39 AC 841 ms
24,704 KB
testcase_40 AC 910 ms
24,576 KB
testcase_41 AC 382 ms
25,088 KB
testcase_42 AC 368 ms
25,344 KB
testcase_43 TLE -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, m = gets.split(" ").map{|s| s.to_i}

w = Array.new(n) {Array.new(2, -Float::INFINITY)}
0.upto(n-1) {|i|
	w[i][1] = Float::INFINITY
}
w[0][0] = Float::INFINITY

v = Array.new(n) {Array.new}

m.times {
	s, t, d = gets.split(" ").map{|s| s.to_i}
	v[s-1] << [t-1, d]
	v[t-1] << [s-1, d]
}

que = [[0, Float::INFINITY, 0]]

while que.size > 0 do
	cv, cd, ci = que.shift
	v[cv].each {|nv, nd|
		nd = cd if cd < nd
		if nd > w[nv][0] or (nd == w[nv][0] and ci+1 < w[nv][1]) then
			w[nv] = [nd, ci+1]
			que << [nv, nd, ci+1] if nv != n-1
		end
	}		
end

puts "#{w[n-1][0]} #{w[n-1][1]}"
0