結果

問題 No.1473 おでぶなおばけさん
ユーザー 小野寺健小野寺健
提出日時 2021-10-31 11:10:27
言語 Ruby
(3.3.0)
結果
AC  
実行時間 483 ms / 2,000 ms
コード長 1,073 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 27,776 KB
最終ジャッジ日時 2024-10-08 13:40:55
合計ジャッジ時間 18,603 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
12,032 KB
testcase_01 AC 80 ms
12,288 KB
testcase_02 AC 423 ms
27,264 KB
testcase_03 AC 334 ms
23,552 KB
testcase_04 AC 255 ms
19,712 KB
testcase_05 AC 147 ms
14,336 KB
testcase_06 AC 370 ms
24,192 KB
testcase_07 AC 461 ms
27,648 KB
testcase_08 AC 482 ms
27,776 KB
testcase_09 AC 483 ms
27,776 KB
testcase_10 AC 318 ms
20,736 KB
testcase_11 AC 306 ms
20,480 KB
testcase_12 AC 314 ms
20,608 KB
testcase_13 AC 234 ms
17,792 KB
testcase_14 AC 192 ms
15,744 KB
testcase_15 AC 286 ms
20,096 KB
testcase_16 AC 302 ms
20,480 KB
testcase_17 AC 101 ms
12,544 KB
testcase_18 AC 111 ms
12,672 KB
testcase_19 AC 269 ms
18,176 KB
testcase_20 AC 346 ms
22,400 KB
testcase_21 AC 364 ms
21,248 KB
testcase_22 AC 434 ms
26,368 KB
testcase_23 AC 389 ms
23,808 KB
testcase_24 AC 384 ms
23,808 KB
testcase_25 AC 414 ms
26,112 KB
testcase_26 AC 429 ms
25,984 KB
testcase_27 AC 220 ms
17,152 KB
testcase_28 AC 454 ms
26,368 KB
testcase_29 AC 303 ms
21,120 KB
testcase_30 AC 343 ms
21,760 KB
testcase_31 AC 475 ms
27,776 KB
testcase_32 AC 370 ms
24,704 KB
testcase_33 AC 327 ms
23,040 KB
testcase_34 AC 205 ms
17,024 KB
testcase_35 AC 215 ms
17,280 KB
testcase_36 AC 341 ms
23,424 KB
testcase_37 AC 311 ms
22,272 KB
testcase_38 AC 131 ms
14,080 KB
testcase_39 AC 291 ms
20,480 KB
testcase_40 AC 289 ms
20,352 KB
testcase_41 AC 289 ms
20,480 KB
testcase_42 AC 293 ms
20,480 KB
testcase_43 AC 342 ms
21,632 KB
testcase_44 AC 352 ms
21,376 KB
testcase_45 AC 345 ms
21,504 KB
testcase_46 AC 365 ms
23,296 KB
testcase_47 AC 422 ms
26,112 KB
testcase_48 AC 403 ms
24,576 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

r = []

m.times {
	r << gets.split(" ").map{|s| s.to_i}
}

class UnionFind
	def initialize(n)
		@par = 0.upto(n-1).to_a
		@rank = Array.new(n, 0)
	end
	
	def unite(x, y)
		x = find(x)
		y = find(y)
		return if x == y
		if @rank[x] < @rank[y] then
			@par[x] = y
		else
			@par[y] = x
			@rank[x] += 1 if @rank[x] == @rank[y]
		end
	end
	
	def same?(x, y)
		find(x) == find(y)
	end
	
	private
	
	def find(x)
		if @par[x] == x then
			x
		else
			@par[x] = find(@par[x])
		end
	end
end

r.sort_by!{|x| -x[2]}

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

uf = UnionFind.new(n)

maxd = 0
same = false

while r.length > 0 do
	s, t, d = r.shift
	break if same and d < maxd
	maxd = d
	uf.unite(s-1, t-1)
	v[s-1] << t-1
	v[t-1] << s-1
	same = uf.same?(0, n-1)
end

dist = Array.new(n, Float::INFINITY)
dist[0] = 0

q = [[0, 0]]
cost = -1
while q.length > 0 and cost < 0 do
	cv, c = q.shift
	v[cv].each {|nv|
		if nv == n-1 then
			cost = c + 1
			break
		end
		if dist[nv] > c + 1
			dist[nv] = c + 1
			q << [nv, c+1]
		end
	}
end

puts "#{maxd} #{cost}"
0