結果

問題 No.2316 Freight Train
ユーザー 👑 amentorimaruamentorimaru
提出日時 2023-03-26 21:31:59
言語 Ruby
(3.3.0)
結果
AC  
実行時間 745 ms / 2,000 ms
コード長 902 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 33,920 KB
最終ジャッジ日時 2024-09-19 10:00:41
合計ジャッジ時間 20,018 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
12,160 KB
testcase_01 AC 76 ms
12,288 KB
testcase_02 AC 74 ms
12,288 KB
testcase_03 AC 687 ms
33,408 KB
testcase_04 AC 425 ms
23,296 KB
testcase_05 AC 332 ms
23,552 KB
testcase_06 AC 147 ms
12,800 KB
testcase_07 AC 542 ms
16,256 KB
testcase_08 AC 490 ms
33,664 KB
testcase_09 AC 536 ms
25,984 KB
testcase_10 AC 548 ms
23,552 KB
testcase_11 AC 560 ms
32,768 KB
testcase_12 AC 637 ms
30,976 KB
testcase_13 AC 730 ms
33,664 KB
testcase_14 AC 711 ms
33,792 KB
testcase_15 AC 745 ms
33,920 KB
testcase_16 AC 717 ms
33,664 KB
testcase_17 AC 741 ms
33,664 KB
testcase_18 AC 709 ms
33,664 KB
testcase_19 AC 721 ms
33,792 KB
testcase_20 AC 730 ms
33,792 KB
testcase_21 AC 726 ms
33,664 KB
testcase_22 AC 728 ms
33,664 KB
testcase_23 AC 636 ms
33,536 KB
testcase_24 AC 717 ms
33,792 KB
testcase_25 AC 591 ms
32,640 KB
testcase_26 AC 557 ms
32,640 KB
testcase_27 AC 456 ms
12,544 KB
testcase_28 AC 81 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class UnionFind
  def initialize(size)
    @parent = Array.new(size, -1)
    @rank = Array.new(size, 0)
  end

  def root(x)
    if @parent[x] < 0
      return x
    else
      @parent[x] = root(@parent[x])
      return @parent[x]
    end
  end

  def same(x, y)
    return root(x) == root(y)
  end

  def unite(x, y)
    x = root(x)
    y = root(y)
    if x == y
      return
    end
    if @rank[x] < @rank[y]
      x, y = y, x
    end
    @parent[x] += @parent[y]
    @parent[y] = x
    if @rank[x] == @rank[y]
      @rank[x] += 1
    end
  end

  def size(x)
    return -@parent[root(x)]
  end
end

n, q = gets.chomp.split(" ").map(&:to_i)

p = gets.chomp.split(" ").map(&:to_i)

uf = UnionFind.new(n)

n.times do |i|
  if p[i] != -1
    uf.unite(i, p[i] - 1)
  end
end

q.times do
  a, b = gets.chomp.split(" ").map(&:to_i)
  if uf.same(a - 1, b - 1)
    puts "Yes"
  else
    puts "No"
  end
end
0