結果

問題 No.2316 Freight Train
ユーザー sepa38sepa38
提出日時 2023-05-26 21:25:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 846 ms / 2,000 ms
コード長 790 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 109,680 KB
最終ジャッジ日時 2024-12-25 04:41:00
合計ジャッジ時間 19,112 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(500000)
class UF:
  def __init__(self, n):
    self.root = [i for i in range(n)]
    self.subt = [1] * n

  def find(self, x):
    if self.root[x] == x:
      return x
    else:
      self.root[x] = self.find(self.root[x])
      return self.root[x]

  def union(self, x, y):
    x, y = self.find(x), self.find(y)
    x, y = min(x, y), max(x, y)
    if x != y:
      self.subt[x] += self.subt[y]
    self.root[y] = x

  def size(self, x):
    return self.subt[self.find(x)]

n, q = map(int, input().split())
p = list(map(lambda x: int(x)-1, input().split()))
uf = UF(n)
for i in range(n):
  if p[i] < 0:
    continue
  uf.union(i, p[i])
for _ in range(q):
  a, b = map(lambda x: int(x)-1, input().split())
  print("Yes" if uf.find(a) == uf.find(b) else "No")
0