結果

問題 No.2316 Freight Train
ユーザー ああいいああいい
提出日時 2023-05-26 21:37:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 887 ms / 2,000 ms
コード長 610 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 108,160 KB
最終ジャッジ日時 2024-06-07 06:01:16
合計ジャッジ時間 20,565 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 822 ms
107,648 KB
testcase_04 AC 562 ms
90,240 KB
testcase_05 AC 475 ms
89,728 KB
testcase_06 AC 240 ms
78,080 KB
testcase_07 AC 711 ms
81,756 KB
testcase_08 AC 609 ms
107,392 KB
testcase_09 AC 675 ms
94,336 KB
testcase_10 AC 721 ms
90,024 KB
testcase_11 AC 705 ms
104,320 KB
testcase_12 AC 728 ms
100,352 KB
testcase_13 AC 816 ms
107,728 KB
testcase_14 AC 861 ms
107,956 KB
testcase_15 AC 882 ms
107,392 KB
testcase_16 AC 887 ms
107,264 KB
testcase_17 AC 835 ms
107,776 KB
testcase_18 AC 874 ms
107,864 KB
testcase_19 AC 845 ms
108,032 KB
testcase_20 AC 857 ms
107,264 KB
testcase_21 AC 864 ms
107,520 KB
testcase_22 AC 821 ms
108,160 KB
testcase_23 AC 538 ms
107,520 KB
testcase_24 AC 574 ms
107,776 KB
testcase_25 AC 546 ms
106,112 KB
testcase_26 AC 531 ms
105,344 KB
testcase_27 AC 493 ms
75,904 KB
testcase_28 AC 41 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

import sys
sys.setrecursionlimit(10 ** 8)
parent= list(range(N + 1))

def find(i):
    if parent[i] == i:return i
    parent[i] = find(parent[i])
    return parent[i]
def unite(i,j):
     I = find(i)
     J = find(j)
     if I == J:return False
     parent[i] = J
     parent[I] = J
     return True
def isSame(i,j):
     return find(i) == find(j)

for i in range(N):
    if P[i] == -1:continue
    unite(i + 1,P[i])

for _ in range(Q):
    a,b = map(int,input().split())
    if isSame(a,b):
        print('Yes')
    else:
        print('No')
0