結果

問題 No.2316 Freight Train
ユーザー 👑 KA37RIKA37RI
提出日時 2023-05-26 22:05:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,135 ms / 2,000 ms
コード長 720 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 68,964 KB
最終ジャッジ日時 2024-06-07 06:57:54
合計ジャッジ時間 25,716 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 1,097 ms
67,232 KB
testcase_04 AC 587 ms
41,524 KB
testcase_05 AC 423 ms
35,756 KB
testcase_06 AC 154 ms
16,672 KB
testcase_07 AC 914 ms
51,836 KB
testcase_08 AC 630 ms
51,168 KB
testcase_09 AC 787 ms
49,944 KB
testcase_10 AC 854 ms
52,116 KB
testcase_11 AC 761 ms
55,880 KB
testcase_12 AC 902 ms
54,432 KB
testcase_13 AC 1,097 ms
67,944 KB
testcase_14 AC 1,099 ms
67,948 KB
testcase_15 AC 1,105 ms
68,052 KB
testcase_16 AC 1,104 ms
68,064 KB
testcase_17 AC 1,094 ms
67,976 KB
testcase_18 AC 1,104 ms
68,072 KB
testcase_19 AC 1,116 ms
68,116 KB
testcase_20 AC 1,135 ms
68,052 KB
testcase_21 AC 1,078 ms
68,184 KB
testcase_22 AC 1,092 ms
68,032 KB
testcase_23 AC 943 ms
63,392 KB
testcase_24 AC 1,045 ms
68,964 KB
testcase_25 AC 1,051 ms
55,184 KB
testcase_26 AC 954 ms
63,092 KB
testcase_27 AC 753 ms
34,432 KB
testcase_28 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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