結果

問題 No.2316 Freight Train
ユーザー なえしらなえしら
提出日時 2024-06-15 19:22:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 603 ms / 2,000 ms
コード長 386 bytes
コンパイル時間 783 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 109,568 KB
最終ジャッジ日時 2024-06-15 19:22:54
合計ジャッジ時間 18,388 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 558 ms
108,672 KB
testcase_04 AC 353 ms
90,820 KB
testcase_05 AC 260 ms
91,092 KB
testcase_06 AC 149 ms
77,312 KB
testcase_07 AC 498 ms
82,048 KB
testcase_08 AC 351 ms
109,568 KB
testcase_09 AC 438 ms
95,616 KB
testcase_10 AC 469 ms
91,136 KB
testcase_11 AC 430 ms
105,600 KB
testcase_12 AC 471 ms
102,332 KB
testcase_13 AC 572 ms
109,184 KB
testcase_14 AC 552 ms
109,184 KB
testcase_15 AC 603 ms
109,056 KB
testcase_16 AC 556 ms
109,184 KB
testcase_17 AC 574 ms
109,184 KB
testcase_18 AC 566 ms
109,312 KB
testcase_19 AC 588 ms
109,184 KB
testcase_20 AC 581 ms
109,568 KB
testcase_21 AC 569 ms
109,184 KB
testcase_22 AC 565 ms
109,184 KB
testcase_23 AC 514 ms
109,568 KB
testcase_24 AC 533 ms
109,568 KB
testcase_25 AC 551 ms
107,264 KB
testcase_26 AC 490 ms
107,136 KB
testcase_27 AC 456 ms
76,160 KB
testcase_28 AC 37 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())

P = list(map(int, input().split()))
for i in range(N):
  if P[i] != -1: P[i] -= 1

C = [-1]*N
for i, p in enumerate(P):
  if p != -1: C[p] = i

R = [-1]*N
for i in range(N):
  if P[i] != -1: continue
  R[i] = i
  while (i := C[i]) != -1: R[i] = R[P[i]]

for _ in range(Q):
  a, b = map(int, input().split())
  print("Yes" if R[a-1] == R[b-1] else "No")
0