結果

問題 No.1054 Union add query
ユーザー simansiman
提出日時 2022-04-06 05:52:25
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 1,007 bytes
コンパイル時間 34 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 27,904 KB
最終ジャッジ日時 2024-05-05 17:15:52
合計ジャッジ時間 10,151 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,032 KB
testcase_01 AC 78 ms
12,160 KB
testcase_02 AC 77 ms
12,160 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 1,086 ms
17,664 KB
testcase_07 AC 1,059 ms
17,664 KB
testcase_08 AC 1,043 ms
17,664 KB
testcase_09 AC 1,238 ms
27,904 KB
testcase_10 AC 843 ms
27,648 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class UnionFind
  def initialize(n)
    @size = Array.new(n, 1)
    @b = 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 add(x, v)
    root = find(x)
    @b[root] += v
  end

  def get(x)
    if @parent[x] == x
      @b[x]
    else
      @b[x] + get(@parent[x])
    end
  end

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

    if @size[x] < @size[y]
      @parent[x] = y
      @size[y] += @size[x]
      @b[x] -= @b[y]
    else
      @parent[y] = x
      @size[x] += @size[y]
      @b[y] -= @b[x]
    end
  end

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

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

N, Q = gets.split.map(&:to_i)
uf = UnionFind.new(N + 1)
A = Hash.new(0)

Q.times do
  t, a, b = gets.split.map(&:to_i)

  case t
  when 1
    uf.unite(a, b)
  when 2
    uf.add(a, b)
  when 3
    puts uf.get(a)
  end
end
0