結果

問題 No.2202 贅沢てりたまチキン
ユーザー simansiman
提出日時 2023-02-04 15:31:28
言語 Ruby
(3.3.0)
結果
AC  
実行時間 609 ms / 2,000 ms
コード長 858 bytes
コンパイル時間 42 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 25,728 KB
最終ジャッジ日時 2024-07-03 12:48:20
合計ジャッジ時間 10,106 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,160 KB
testcase_01 AC 77 ms
12,160 KB
testcase_02 AC 79 ms
12,160 KB
testcase_03 AC 83 ms
12,288 KB
testcase_04 AC 82 ms
12,160 KB
testcase_05 AC 83 ms
12,416 KB
testcase_06 AC 79 ms
12,160 KB
testcase_07 AC 76 ms
12,160 KB
testcase_08 AC 78 ms
12,288 KB
testcase_09 AC 79 ms
12,416 KB
testcase_10 AC 115 ms
25,600 KB
testcase_11 AC 77 ms
12,416 KB
testcase_12 AC 79 ms
12,160 KB
testcase_13 AC 79 ms
12,160 KB
testcase_14 AC 497 ms
25,472 KB
testcase_15 AC 504 ms
25,600 KB
testcase_16 AC 458 ms
25,728 KB
testcase_17 AC 543 ms
25,728 KB
testcase_18 AC 282 ms
17,664 KB
testcase_19 AC 317 ms
25,600 KB
testcase_20 AC 564 ms
25,600 KB
testcase_21 AC 591 ms
25,472 KB
testcase_22 AC 425 ms
12,544 KB
testcase_23 AC 425 ms
12,800 KB
testcase_24 AC 410 ms
12,288 KB
testcase_25 AC 609 ms
25,472 KB
testcase_26 AC 593 ms
25,472 KB
testcase_27 AC 505 ms
25,728 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 + N)
  uf.unite(a + N, b)
end

if (1..N).all? { |v| uf.same?(v, v + N) }
  puts 'Yes'
else
  puts 'No'
end
0