結果

問題 No.1390 Get together
ユーザー maguroflymagurofly
提出日時 2021-02-12 21:31:27
言語 Ruby
(3.3.0)
結果
AC  
実行時間 639 ms / 2,000 ms
コード長 716 bytes
コンパイル時間 35 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 32,344 KB
最終ジャッジ日時 2024-07-19 20:26:03
合計ジャッジ時間 12,978 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
12,160 KB
testcase_01 AC 91 ms
12,032 KB
testcase_02 AC 92 ms
12,160 KB
testcase_03 AC 104 ms
12,672 KB
testcase_04 AC 103 ms
12,544 KB
testcase_05 AC 103 ms
12,672 KB
testcase_06 AC 102 ms
12,416 KB
testcase_07 AC 102 ms
12,544 KB
testcase_08 AC 103 ms
12,672 KB
testcase_09 AC 106 ms
12,544 KB
testcase_10 AC 86 ms
12,032 KB
testcase_11 AC 87 ms
12,032 KB
testcase_12 AC 88 ms
12,288 KB
testcase_13 AC 88 ms
12,032 KB
testcase_14 AC 89 ms
12,160 KB
testcase_15 AC 93 ms
12,032 KB
testcase_16 AC 617 ms
32,344 KB
testcase_17 AC 544 ms
31,232 KB
testcase_18 AC 639 ms
32,272 KB
testcase_19 AC 610 ms
31,232 KB
testcase_20 AC 594 ms
31,232 KB
testcase_21 AC 595 ms
31,360 KB
testcase_22 AC 596 ms
31,232 KB
testcase_23 AC 605 ms
31,232 KB
testcase_24 AC 612 ms
31,360 KB
testcase_25 AC 609 ms
31,232 KB
testcase_26 AC 620 ms
31,232 KB
testcase_27 AC 617 ms
31,232 KB
testcase_28 AC 618 ms
31,104 KB
testcase_29 AC 614 ms
31,360 KB
testcase_30 AC 619 ms
31,360 KB
testcase_31 AC 619 ms
31,232 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class UnionFind
  def initialize(size); @p, @r = [*0...size], [1] * size; end
  def leader(i); j = i; until i == @p[i]; j, i = i, @p[j] = @p[i]; end; i; end
  def merge(i, j); k, l = leader(i), leader(j); return false if k == l; k, l = l, k if @r[k] < @r[l]; @p[l] = k; @r[k] += @r[l]; true; end
  def same?(i, j); leader(i) == leader(j); end
  def size(i); @r[leader(i)]; end
end

N, M = gets.split.map(&:to_i)
slime2box = Array.new(N) { [] }
uf = UnionFind.new(M)
N.times do
    b, c = gets.split.map { |s| s.to_i - 1 }
    slime2box[c] << b
end

count = 0
slime2box.each do |boxes|
    boxes.each_cons(2) do |(i, j)|
        next if uf.same?(i, j)
        uf.merge(i, j)
        count += 1
    end
end

puts count
0