結果

問題 No.1473 おでぶなおばけさん
ユーザー 小野寺健小野寺健
提出日時 2021-10-31 08:55:30
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 573 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 45,184 KB
最終ジャッジ日時 2024-10-08 08:48:08
合計ジャッジ時間 6,733 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
17,408 KB
testcase_01 AC 85 ms
12,032 KB
testcase_02 AC 1,059 ms
45,056 KB
testcase_03 AC 1,572 ms
43,648 KB
testcase_04 AC 469 ms
28,032 KB
testcase_05 AC 303 ms
21,120 KB
testcase_06 AC 1,741 ms
43,520 KB
testcase_07 AC 698 ms
44,416 KB
testcase_08 AC 693 ms
44,416 KB
testcase_09 AC 660 ms
44,288 KB
testcase_10 AC 845 ms
24,448 KB
testcase_11 AC 1,028 ms
24,192 KB
testcase_12 AC 981 ms
24,320 KB
testcase_13 AC 538 ms
20,096 KB
testcase_14 AC 379 ms
17,792 KB
testcase_15 AC 654 ms
23,296 KB
testcase_16 AC 878 ms
24,064 KB
testcase_17 AC 126 ms
13,056 KB
testcase_18 AC 162 ms
13,440 KB
testcase_19 AC 945 ms
31,488 KB
testcase_20 AC 1,192 ms
40,064 KB
testcase_21 AC 1,031 ms
37,376 KB
testcase_22 AC 530 ms
40,960 KB
testcase_23 AC 487 ms
32,768 KB
testcase_24 AC 473 ms
33,024 KB
testcase_25 AC 539 ms
38,272 KB
testcase_26 AC 563 ms
38,784 KB
testcase_27 AC 244 ms
20,224 KB
testcase_28 AC 766 ms
43,904 KB
testcase_29 AC 1,027 ms
39,680 KB
testcase_30 AC 1,421 ms
43,904 KB
testcase_31 AC 809 ms
45,056 KB
testcase_32 AC 1,784 ms
45,184 KB
testcase_33 AC 1,036 ms
39,936 KB
testcase_34 AC 444 ms
27,136 KB
testcase_35 AC 653 ms
27,648 KB
testcase_36 AC 428 ms
28,800 KB
testcase_37 AC 469 ms
31,232 KB
testcase_38 AC 150 ms
15,616 KB
testcase_39 AC 926 ms
24,704 KB
testcase_40 AC 956 ms
24,576 KB
testcase_41 AC 666 ms
25,216 KB
testcase_42 AC 716 ms
24,448 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.length > 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]
		end
	}		
end

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