結果

問題 No.2316 Freight Train
ユーザー lloyzlloyz
提出日時 2023-05-26 21:30:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 755 ms / 2,000 ms
コード長 2,326 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 131,744 KB
最終ジャッジ日時 2024-06-07 05:39:41
合計ジャッジ時間 18,301 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,888 KB
testcase_01 AC 42 ms
54,400 KB
testcase_02 AC 43 ms
54,016 KB
testcase_03 AC 713 ms
130,340 KB
testcase_04 AC 422 ms
100,608 KB
testcase_05 AC 347 ms
101,888 KB
testcase_06 AC 177 ms
79,616 KB
testcase_07 AC 542 ms
92,160 KB
testcase_08 AC 504 ms
131,260 KB
testcase_09 AC 528 ms
107,180 KB
testcase_10 AC 598 ms
101,504 KB
testcase_11 AC 548 ms
126,244 KB
testcase_12 AC 575 ms
121,588 KB
testcase_13 AC 755 ms
131,640 KB
testcase_14 AC 737 ms
131,496 KB
testcase_15 AC 734 ms
131,380 KB
testcase_16 AC 737 ms
131,340 KB
testcase_17 AC 717 ms
131,624 KB
testcase_18 AC 715 ms
131,488 KB
testcase_19 AC 735 ms
131,596 KB
testcase_20 AC 730 ms
131,388 KB
testcase_21 AC 735 ms
131,248 KB
testcase_22 AC 728 ms
131,372 KB
testcase_23 AC 571 ms
131,636 KB
testcase_24 AC 611 ms
131,744 KB
testcase_25 AC 613 ms
119,936 KB
testcase_26 AC 579 ms
119,680 KB
testcase_27 AC 474 ms
77,312 KB
testcase_28 AC 44 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque

class UnionFind():
    def __init__(self, n):
        '''
        UnionFindクラス。nは要素数を表す。
        '''
        self.n = n
        self.parents = [-1] * n

    def find(self, x):
        '''
        要素xを含む集合の親を見つける関数。
        '''
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]

    def union(self, x, y):
        '''
        要素xを含む集合と要素yを含む集合を合体する関数。
        基本的には、要素数が多い集合に統合される。
        要素数が同じときは要素yを含む集合に統合される。
        '''
        x = self.find(x)
        y = self.find(y)

        if x == y:
            return

        if self.parents[x] > self.parents[y]:
            x, y = y, x

        self.parents[x] += self.parents[y]
        self.parents[y] = x

    def size(self, x):
        '''
        要素xを含む集合の要素数を出す関数。
        '''
        return -self.parents[self.find(x)]

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

    def members(self, x):
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]

    def roots(self):
        return [i for i, x in enumerate(self.parents) if x < 0]

    def group_count(self):
        return len(self.roots())

    def all_group_members(self):
        group_members = defaultdict(list)
        for member in range(self.n):
            group_members[self.find(member)].append(member)
        return group_members

    def __str__(self):
        return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items())

n, q = map(int, input().split())
P = list(map(int, input().split()))

G = defaultdict(list)
R = []
for i in range(n):
    if P[i] == -1:
        R.append(i)
    else:
        G[P[i] - 1].append(i)
UF = UnionFind(n)
for r in R:
    Que = deque([r])
    while Que:
        cp = Que.popleft()
        for np in G[cp]:
            UF.union(r, np)
            Que.append(np)

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