結果

問題 No.2418 情報通だよ!Nafmoくん
ユーザー simansiman
提出日時 2023-08-18 13:57:34
言語 Ruby
(3.3.0)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 886 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 27,008 KB
最終ジャッジ日時 2024-11-14 12:25:14
合計ジャッジ時間 6,727 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,032 KB
testcase_01 AC 86 ms
12,160 KB
testcase_02 AC 84 ms
12,288 KB
testcase_03 AC 343 ms
23,168 KB
testcase_04 AC 183 ms
25,088 KB
testcase_05 AC 235 ms
14,592 KB
testcase_06 AC 275 ms
23,040 KB
testcase_07 AC 240 ms
13,952 KB
testcase_08 AC 302 ms
27,008 KB
testcase_09 AC 284 ms
15,488 KB
testcase_10 AC 348 ms
22,272 KB
testcase_11 AC 310 ms
21,888 KB
testcase_12 AC 252 ms
20,224 KB
testcase_13 AC 154 ms
14,336 KB
testcase_14 AC 219 ms
17,536 KB
testcase_15 AC 204 ms
12,288 KB
testcase_16 AC 328 ms
17,792 KB
testcase_17 AC 144 ms
12,288 KB
testcase_18 AC 239 ms
21,248 KB
testcase_19 AC 166 ms
21,760 KB
testcase_20 AC 217 ms
12,416 KB
testcase_21 AC 178 ms
16,128 KB
testcase_22 AC 162 ms
12,800 KB
testcase_23 AC 85 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class UnionFind
  def initialize(n)
    @size = Array.new(n, 1)
    @rank = Array.new(n, 0)
    @parent = []

    (0..n).each do |i|
      @parent[i] = i
    end
  end

  def find(x)
    if @parent[x] == x
      x
    else
      @parent[x] = find(@parent[x])
    end
  end

  def unite(x, y)
    x = find(x)
    y = find(y)
    return if x == y

    if @rank[x] < @rank[y]
      @parent[x] = y
      @size[y] += @size[x]
    else
      @parent[y] = x
      @size[x] += @size[y]

      @rank[x] += 1 if @rank[x] == @rank[y]
    end
  end

  def same?(x, y)
    find(x) == find(y)
  end

  def size(x)
    @size[find(x)]
  end
end

N, M = gets.split.map(&:to_i)
uf = UnionFind.new(2 * N + 1)

M.times do
  a, b = gets.split.map(&:to_i)
  uf.unite(a, b)
end

counter = Hash.new(0)

1.upto(2 * N) do |i|
  par = uf.find(i)
  counter[par] += 1
end

puts N - counter.map { |k, v| v / 2 }.sum
0