結果

問題 No.2290 UnUnion Find
ユーザー maguroflymagurofly
提出日時 2023-05-05 21:51:28
言語 Ruby
(3.3.0)
結果
AC  
実行時間 957 ms / 2,000 ms
コード長 773 bytes
コンパイル時間 618 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 46,464 KB
最終ジャッジ日時 2024-11-23 07:02:21
合計ジャッジ時間 39,755 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,160 KB
testcase_01 AC 87 ms
12,160 KB
testcase_02 AC 528 ms
12,160 KB
testcase_03 AC 689 ms
26,496 KB
testcase_04 AC 704 ms
26,496 KB
testcase_05 AC 697 ms
26,624 KB
testcase_06 AC 682 ms
26,752 KB
testcase_07 AC 694 ms
26,624 KB
testcase_08 AC 697 ms
26,752 KB
testcase_09 AC 707 ms
26,624 KB
testcase_10 AC 703 ms
26,496 KB
testcase_11 AC 700 ms
26,752 KB
testcase_12 AC 715 ms
26,752 KB
testcase_13 AC 711 ms
26,624 KB
testcase_14 AC 714 ms
26,752 KB
testcase_15 AC 698 ms
26,752 KB
testcase_16 AC 696 ms
26,496 KB
testcase_17 AC 696 ms
26,624 KB
testcase_18 AC 690 ms
26,752 KB
testcase_19 AC 781 ms
32,512 KB
testcase_20 AC 902 ms
46,464 KB
testcase_21 AC 547 ms
13,568 KB
testcase_22 AC 665 ms
20,864 KB
testcase_23 AC 656 ms
20,992 KB
testcase_24 AC 838 ms
36,864 KB
testcase_25 AC 615 ms
18,432 KB
testcase_26 AC 957 ms
39,936 KB
testcase_27 AC 866 ms
37,760 KB
testcase_28 AC 708 ms
26,496 KB
testcase_29 AC 799 ms
35,840 KB
testcase_30 AC 566 ms
14,336 KB
testcase_31 AC 787 ms
34,048 KB
testcase_32 AC 657 ms
18,816 KB
testcase_33 AC 718 ms
26,368 KB
testcase_34 AC 894 ms
46,464 KB
testcase_35 AC 918 ms
39,552 KB
testcase_36 AC 635 ms
19,456 KB
testcase_37 AC 702 ms
24,704 KB
testcase_38 AC 622 ms
19,200 KB
testcase_39 AC 647 ms
21,376 KB
testcase_40 AC 905 ms
38,784 KB
testcase_41 AC 606 ms
17,152 KB
testcase_42 AC 797 ms
32,256 KB
testcase_43 AC 759 ms
30,720 KB
testcase_44 AC 693 ms
26,880 KB
testcase_45 AC 690 ms
26,752 KB
testcase_46 AC 719 ms
26,624 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:31: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

N, Q = gets.split.map(&:to_i)
Component = Struct.new(:id, :vertices, :next, :prev)
@component_of = Array.new(N) { |i| Component.new(i, [i], nil) }
N.times do |i|
	@component_of[i].next = @component_of[(i + 1) % N]
	@component_of[i].prev = @component_of[(i - 1) % N]
end

def merge(u, v)
	x, y = @component_of[u], @component_of[v]
	return false if x.id == y.id
	x, y = y, x if x.vertices.size < y.vertices.size
	# merge y to x
	y.vertices.each do |v|
		x.vertices << v
		@component_of[v] = x
	end
	# delete y
	y.next.prev, y.prev.next = y.prev, y.next
	true
end

Q.times do
	t, *q = gets.split.map(&:to_i)
	case t
	when 1
		merge(q[0] - 1, q[1] - 1)
	when 2
		x = @component_of[q[0] - 1]
		if x.next.id == x.id
			puts -1
		else
			puts x.next.vertices[0] + 1
		end
	end
end
0