結果

問題 No.2316 Freight Train
ユーザー ntudantuda
提出日時 2023-05-27 11:25:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 878 ms / 2,000 ms
コード長 619 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 108,160 KB
最終ジャッジ日時 2024-06-07 15:14:17
合計ジャッジ時間 21,029 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 836 ms
107,392 KB
testcase_04 AC 579 ms
89,984 KB
testcase_05 AC 490 ms
90,240 KB
testcase_06 AC 234 ms
78,336 KB
testcase_07 AC 688 ms
82,048 KB
testcase_08 AC 628 ms
107,776 KB
testcase_09 AC 693 ms
95,104 KB
testcase_10 AC 700 ms
90,240 KB
testcase_11 AC 681 ms
103,808 KB
testcase_12 AC 750 ms
100,608 KB
testcase_13 AC 848 ms
108,160 KB
testcase_14 AC 856 ms
107,520 KB
testcase_15 AC 859 ms
107,648 KB
testcase_16 AC 874 ms
107,392 KB
testcase_17 AC 863 ms
107,648 KB
testcase_18 AC 878 ms
107,776 KB
testcase_19 AC 851 ms
107,520 KB
testcase_20 AC 857 ms
107,520 KB
testcase_21 AC 875 ms
107,796 KB
testcase_22 AC 866 ms
107,648 KB
testcase_23 AC 509 ms
108,104 KB
testcase_24 AC 558 ms
107,520 KB
testcase_25 AC 529 ms
105,984 KB
testcase_26 AC 514 ms
105,728 KB
testcase_27 AC 449 ms
75,936 KB
testcase_28 AC 39 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def find(x):
    if P[x] == x: return x
    else:
        P[x] = find(P[x]) #経路圧縮
        return P[x]
        # return find(P[x]) #経路圧縮なし

def same(x,y):
    return find(x) == find(y)

def unite(x,y):
    x = find(x)
    y = find(y)
    if x == y: return 0
    if x > y: x,y = y,x
    P[y] = x

N,Q = map(int,input().split())
PI = list(map(int,input().split()))
P = [i for i in range(N+1)]

for i,p in enumerate(PI,start = 1):
    if p == -1:
        continue
    unite(i,p)

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