結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,456 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 44 ms
51,712 KB
testcase_03 AC 583 ms
105,600 KB
testcase_04 AC 358 ms
89,344 KB
testcase_05 AC 280 ms
89,344 KB
testcase_06 AC 166 ms
76,544 KB
testcase_07 AC 523 ms
80,896 KB
testcase_08 AC 380 ms
105,600 KB
testcase_09 AC 457 ms
93,824 KB
testcase_10 AC 511 ms
88,960 KB
testcase_11 AC 427 ms
102,272 KB
testcase_12 AC 505 ms
99,328 KB
testcase_13 AC 665 ms
105,856 KB
testcase_14 AC 597 ms
105,984 KB
testcase_15 AC 616 ms
105,600 KB
testcase_16 AC 589 ms
105,984 KB
testcase_17 AC 597 ms
105,728 KB
testcase_18 AC 613 ms
105,728 KB
testcase_19 AC 595 ms
105,984 KB
testcase_20 AC 609 ms
105,472 KB
testcase_21 AC 642 ms
105,856 KB
testcase_22 AC 618 ms
106,112 KB
testcase_23 AC 540 ms
105,600 KB
testcase_24 AC 574 ms
106,112 KB
testcase_25 AC 555 ms
104,064 KB
testcase_26 AC 516 ms
104,320 KB
testcase_27 AC 488 ms
76,288 KB
testcase_28 AC 43 ms
51,840 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:
        ni = p[i]
        p[i] = j
        i = ni
for _ in range(q):
    a, b = map(int, input().split())
    print('Yes' if p[a - 1] == p[b - 1] else 'No')
0