結果

問題 No.2316 Freight Train
ユーザー KudeKude
提出日時 2023-05-26 21:27:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 604 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 106,368 KB
最終ジャッジ日時 2024-06-07 05:28:07
合計ジャッジ時間 15,804 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 591 ms
105,812 KB
testcase_04 AC 347 ms
89,248 KB
testcase_05 AC 272 ms
89,216 KB
testcase_06 AC 148 ms
77,184 KB
testcase_07 AC 504 ms
80,896 KB
testcase_08 AC 366 ms
106,240 KB
testcase_09 AC 461 ms
93,584 KB
testcase_10 AC 478 ms
89,464 KB
testcase_11 AC 415 ms
102,528 KB
testcase_12 AC 503 ms
99,200 KB
testcase_13 AC 604 ms
106,116 KB
testcase_14 AC 585 ms
106,112 KB
testcase_15 AC 590 ms
105,984 KB
testcase_16 AC 589 ms
105,728 KB
testcase_17 AC 593 ms
106,112 KB
testcase_18 AC 591 ms
106,112 KB
testcase_19 AC 585 ms
105,984 KB
testcase_20 AC 593 ms
105,728 KB
testcase_21 AC 585 ms
106,368 KB
testcase_22 AC 580 ms
105,728 KB
testcase_23 AC 528 ms
105,740 KB
testcase_24 AC 556 ms
105,748 KB
testcase_25 AC 554 ms
104,064 KB
testcase_26 AC 513 ms
104,064 KB
testcase_27 AC 465 ms
76,464 KB
testcase_28 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())
p = [pi - 1 if pi > 0 else i for i, pi in enumerate(map(int, input().split()))]
for i in range(n):
    j = i
    while p[j] != j:
        j = p[j]
    while i != j:
        p[i] = j
        i = p[i]
for _ in range(q):
    a, b = map(int, input().split())
    print('Yes' if p[a - 1] == p[b - 1] else 'No')
0