結果

問題 No.2316 Freight Train
ユーザー simansiman
提出日時 2023-05-28 10:13:40
言語 Ruby
(3.3.0)
結果
AC  
実行時間 847 ms / 2,000 ms
コード長 896 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 34,560 KB
最終ジャッジ日時 2024-06-08 02:12:06
合計ジャッジ時間 20,244 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
12,288 KB
testcase_01 AC 100 ms
12,160 KB
testcase_02 AC 94 ms
12,160 KB
testcase_03 AC 847 ms
34,048 KB
testcase_04 AC 481 ms
23,552 KB
testcase_05 AC 391 ms
23,296 KB
testcase_06 AC 166 ms
12,800 KB
testcase_07 AC 608 ms
16,512 KB
testcase_08 AC 598 ms
34,048 KB
testcase_09 AC 617 ms
26,112 KB
testcase_10 AC 617 ms
23,680 KB
testcase_11 AC 645 ms
33,024 KB
testcase_12 AC 700 ms
31,360 KB
testcase_13 AC 832 ms
34,176 KB
testcase_14 AC 831 ms
34,176 KB
testcase_15 AC 836 ms
34,176 KB
testcase_16 AC 837 ms
34,176 KB
testcase_17 AC 828 ms
34,048 KB
testcase_18 AC 824 ms
34,048 KB
testcase_19 AC 829 ms
34,176 KB
testcase_20 AC 836 ms
34,048 KB
testcase_21 AC 827 ms
34,176 KB
testcase_22 AC 834 ms
34,048 KB
testcase_23 AC 675 ms
34,176 KB
testcase_24 AC 747 ms
34,048 KB
testcase_25 AC 637 ms
34,432 KB
testcase_26 AC 598 ms
34,560 KB
testcase_27 AC 467 ms
12,416 KB
testcase_28 AC 93 ms
12,160 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, Q = gets.split.map(&:to_i)
P = gets.split.map(&:to_i)
uf = UnionFind.new(N + 1)

P.each.with_index(1) do |v, i|
  next if v == -1

  uf.unite(v, i)
end

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

  if uf.same?(a, b)
    puts 'Yes'
  else
    puts 'No'
  end
end
0