結果

問題 No.2316 Freight Train
ユーザー NPNP
提出日時 2023-05-26 21:30:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,778 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 31,960 KB
最終ジャッジ日時 2024-11-14 16:30:58
合計ジャッジ時間 40,385 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 1,701 ms
30,952 KB
testcase_04 AC 919 ms
20,524 KB
testcase_05 AC 678 ms
21,012 KB
testcase_06 AC 237 ms
12,032 KB
testcase_07 AC 1,437 ms
15,796 KB
testcase_08 AC 1,038 ms
31,792 KB
testcase_09 AC 1,265 ms
23,656 KB
testcase_10 AC 1,369 ms
20,800 KB
testcase_11 AC 1,210 ms
28,920 KB
testcase_12 AC 1,467 ms
27,260 KB
testcase_13 AC 1,745 ms
30,832 KB
testcase_14 AC 1,756 ms
30,628 KB
testcase_15 AC 1,734 ms
31,960 KB
testcase_16 AC 1,723 ms
30,628 KB
testcase_17 AC 1,720 ms
30,712 KB
testcase_18 AC 1,750 ms
30,628 KB
testcase_19 AC 1,748 ms
30,628 KB
testcase_20 AC 1,759 ms
31,956 KB
testcase_21 AC 1,752 ms
30,624 KB
testcase_22 AC 1,778 ms
30,756 KB
testcase_23 AC 1,528 ms
30,840 KB
testcase_24 AC 1,648 ms
30,832 KB
testcase_25 AC 1,528 ms
23,888 KB
testcase_26 AC 1,407 ms
23,892 KB
testcase_27 AC 1,294 ms
10,752 KB
testcase_28 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

parent = [i for i in range(N)]
def find(x):
    if parent[x] != x:
        parent[x] = find(parent[x])
    return parent[x]

for i in range(N):
    if P[i] != -1:
        a = find(i)
        b = find(P[i]-1)
        parent[a] = b

for _ in range(Q):
    A, B = map(int, input().split())
    if find(A-1) == find(B-1):
        print("Yes")
    else:
        print("No")
0