結果

問題 No.2316 Freight Train
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-05-26 22:21:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 913 ms / 2,000 ms
コード長 909 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 108,316 KB
最終ジャッジ日時 2024-06-07 07:28:25
合計ジャッジ時間 21,026 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 864 ms
107,392 KB
testcase_04 AC 569 ms
89,856 KB
testcase_05 AC 498 ms
89,728 KB
testcase_06 AC 249 ms
78,336 KB
testcase_07 AC 697 ms
81,792 KB
testcase_08 AC 623 ms
107,984 KB
testcase_09 AC 720 ms
94,976 KB
testcase_10 AC 741 ms
90,368 KB
testcase_11 AC 691 ms
104,448 KB
testcase_12 AC 765 ms
100,864 KB
testcase_13 AC 866 ms
107,904 KB
testcase_14 AC 884 ms
107,776 KB
testcase_15 AC 913 ms
108,160 KB
testcase_16 AC 890 ms
107,520 KB
testcase_17 AC 902 ms
107,392 KB
testcase_18 AC 902 ms
107,648 KB
testcase_19 AC 866 ms
108,316 KB
testcase_20 AC 862 ms
107,904 KB
testcase_21 AC 877 ms
107,648 KB
testcase_22 AC 898 ms
107,848 KB
testcase_23 AC 543 ms
107,776 KB
testcase_24 AC 573 ms
107,692 KB
testcase_25 AC 577 ms
105,856 KB
testcase_26 AC 550 ms
105,472 KB
testcase_27 AC 492 ms
77,184 KB
testcase_28 AC 38 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Unionfind:
     
    def __init__(self,n):
        self.uf = [-1]*n
 
    def find(self,x):
        if self.uf[x] < 0:
            return x
        else:
            self.uf[x] = self.find(self.uf[x])
            return self.uf[x]
 
    def same(self,x,y):
        return self.find(x) == self.find(y)
 
    def union(self,x,y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False
        if self.uf[x] > self.uf[y]:
            x,y = y,x
        self.uf[x] += self.uf[y]
        self.uf[y] = x
        return True
 
    def size(self,x):
        x = self.find(x)
        return -self.uf[x]

n,q = map(int,input().split())
uf = Unionfind(n)
P = list(map(int,input().split()))
for i,p in enumerate(P):
    if p == -1:
        continue
    uf.union(i,p-1)

for _ in range(q):
    a,b = [int(x)-1 for x in input().split()]
    print("Yes" if uf.same(a,b) else "No")
0