結果

問題 No.1473 おでぶなおばけさん
ユーザー 小野寺健小野寺健
提出日時 2021-10-31 08:58:21
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 586 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 45,056 KB
最終ジャッジ日時 2024-10-08 08:59:29
合計ジャッジ時間 36,399 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
19,108 KB
testcase_01 AC 78 ms
12,416 KB
testcase_02 AC 1,019 ms
44,928 KB
testcase_03 AC 1,423 ms
44,032 KB
testcase_04 AC 409 ms
27,904 KB
testcase_05 AC 275 ms
20,992 KB
testcase_06 AC 1,674 ms
43,392 KB
testcase_07 AC 685 ms
44,288 KB
testcase_08 AC 687 ms
44,288 KB
testcase_09 AC 642 ms
44,416 KB
testcase_10 AC 817 ms
24,576 KB
testcase_11 AC 928 ms
24,192 KB
testcase_12 AC 935 ms
24,576 KB
testcase_13 AC 460 ms
20,096 KB
testcase_14 AC 361 ms
18,048 KB
testcase_15 AC 618 ms
23,040 KB
testcase_16 AC 861 ms
24,064 KB
testcase_17 AC 124 ms
12,800 KB
testcase_18 AC 158 ms
13,312 KB
testcase_19 AC 956 ms
31,488 KB
testcase_20 AC 1,243 ms
39,808 KB
testcase_21 AC 1,012 ms
37,248 KB
testcase_22 AC 523 ms
41,216 KB
testcase_23 AC 481 ms
32,896 KB
testcase_24 AC 471 ms
33,024 KB
testcase_25 AC 519 ms
38,272 KB
testcase_26 AC 556 ms
38,912 KB
testcase_27 AC 229 ms
20,224 KB
testcase_28 AC 755 ms
44,032 KB
testcase_29 AC 1,053 ms
39,296 KB
testcase_30 AC 1,342 ms
43,776 KB
testcase_31 AC 761 ms
44,928 KB
testcase_32 AC 1,865 ms
45,056 KB
testcase_33 AC 1,098 ms
40,192 KB
testcase_34 AC 449 ms
27,008 KB
testcase_35 AC 666 ms
27,392 KB
testcase_36 AC 418 ms
28,416 KB
testcase_37 AC 465 ms
31,360 KB
testcase_38 AC 152 ms
15,488 KB
testcase_39 AC 820 ms
24,832 KB
testcase_40 AC 879 ms
24,832 KB
testcase_41 AC 345 ms
24,704 KB
testcase_42 AC 356 ms
24,576 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] if nv != n-1
		end
	}		
end

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