結果

問題 No.1565 Union
ユーザー 小野寺健小野寺健
提出日時 2021-11-15 10:35:46
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 515 bytes
コンパイル時間 35 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 146,588 KB
最終ジャッジ日時 2024-05-08 06:35:59
合計ジャッジ時間 6,017 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
19,232 KB
testcase_01 AC 82 ms
12,160 KB
testcase_02 AC 87 ms
12,288 KB
testcase_03 AC 82 ms
12,288 KB
testcase_04 AC 82 ms
12,288 KB
testcase_05 AC 82 ms
12,160 KB
testcase_06 AC 82 ms
12,160 KB
testcase_07 AC 78 ms
12,160 KB
testcase_08 AC 81 ms
12,416 KB
testcase_09 AC 80 ms
12,160 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split(" ").map{|s| s.to_i}

cost = Array.new(N) {Array.new(N, Float::INFINITY)}

M.times {
	a, b = gets.split(" ").map{|s| s.to_i}
	cost[a-1][b-1] = cost[b-1][a-1] = 1
}

d = Array.new(N, Float::INFINITY)
used = Array.new(N, false)

d[0] = 0

loop {
	v = -1
	0.upto(N-1) {|u|
		v = u if not used[u] and (v == -1 or d[u] < d[v])
	}
	break if v == -1
	used[v] = true
	0.upto(N-1) {|u|
		if d[u] > d[v] + cost[v][u] then
			d[u] = d[v] + cost[v][u]
		end
	}
}

puts d[N-1] == Float::INFINITY ? -1 : d[N-1]
0