結果

問題 No.2316 Freight Train
コンテスト
ユーザー KA37RI
提出日時 2023-05-26 22:05:12
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
AC  
実行時間 751 ms / 2,000 ms
コード長 720 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 477 ms
コンパイル使用メモリ 20,724 KB
実行使用メモリ 73,320 KB
最終ジャッジ日時 2026-05-30 23:47:54
合計ジャッジ時間 18,149 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

memo = {}

def top(train, etoigne):
  forward = []
  while train[etoigne] != -2:
    forward.append(etoigne)
    etoigne = train[etoigne]
    if etoigne in memo:
      ans = memo[etoigne]
      for e in forward:
        memo[e] = ans
      return ans
  ans = etoigne
  for e in forward:
    memo[e] = ans
  return ans

def solve(N, Q, P, AB):
  ans = []
  for ai, bi in AB:
    if ai not in memo: memo[ai] = top(P, ai)
    if bi not in memo: memo[bi] = top(P, bi)
    ans.append(memo[ai] == memo[bi])
  return ans

N, Q = [int(x) for x in input().split()]
P = [int(x) - 1 for x in input().split()]
AB = [[int(x) - 1 for x in input().split()] for _ in range(Q)]

[print("Yes" if x else "No") for x in solve(N, Q, P, AB)]
0