結果

問題 No.2316 Freight Train
ユーザー iwasikun8iwasikun8
提出日時 2023-05-26 21:37:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 1,352 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 36,004 KB
最終ジャッジ日時 2024-06-07 06:00:53
合計ジャッジ時間 37,557 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 33 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 1,768 ms
29,956 KB
testcase_04 AC 940 ms
20,736 KB
testcase_05 AC 722 ms
21,228 KB
testcase_06 AC 245 ms
12,160 KB
testcase_07 AC 1,539 ms
15,972 KB
testcase_08 AC 1,082 ms
32,140 KB
testcase_09 AC 1,337 ms
23,744 KB
testcase_10 AC 1,405 ms
20,888 KB
testcase_11 AC 1,260 ms
29,012 KB
testcase_12 AC 1,534 ms
27,356 KB
testcase_13 AC 1,803 ms
32,184 KB
testcase_14 AC 1,829 ms
32,184 KB
testcase_15 AC 1,801 ms
32,048 KB
testcase_16 AC 1,804 ms
32,184 KB
testcase_17 AC 1,789 ms
32,188 KB
testcase_18 AC 1,828 ms
32,188 KB
testcase_19 AC 1,794 ms
32,188 KB
testcase_20 AC 1,842 ms
32,052 KB
testcase_21 AC 1,872 ms
32,188 KB
testcase_22 AC 1,853 ms
32,316 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 1,527 ms
23,980 KB
testcase_26 AC 1,463 ms
23,976 KB
testcase_27 AC 1,356 ms
11,008 KB
testcase_28 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.parents = [-1] * n
        self.list_of_size = [1] * n

    def find_root(self, x):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find_root(self.parents[x])
            return self.parents[x]
    
    def union(self, x, y):
        root_of_x = self.find_root(x)
        root_of_y = self.find_root(y)

        if root_of_x == root_of_y:
            return
        
        if self.parents[root_of_x] > self.parents[root_of_y]:
            self.parents[root_of_x] = root_of_y
            self.list_of_size[y] += self.list_of_size[x]
        else:
            self.parents[root_of_y] = root_of_x
            self.list_of_size[x] += self.list_of_size[y]

            if self.parents[root_of_x] == self.parents[root_of_y]:
                self.parents[root_of_x] -= 1
    
    def same(self, x, y):
        return self.find_root(x) == self.find_root(y)
    
    def size(self, x):
        return self.list_of_size[self.find_root(x)]

N, Q = map(int, input().split())
P = list(map(int, input().split()))
uf = UnionFind(N)
for i in range(N):
    if P[i] == -1:
        continue
    uf.union(i, P[i]-1)

for j in range(Q):
    A, B = map(lambda x: int(x)-1, input().split())
    if uf.same(A, B):
        print("Yes")
    else:
        print("No")
0