結果

問題 No.2316 Freight Train
ユーザー gr1msl3ygr1msl3y
提出日時 2023-05-28 00:50:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 787 ms / 2,000 ms
コード長 1,184 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 81,408 KB
実行使用メモリ 126,644 KB
最終ジャッジ日時 2024-12-26 06:24:22
合計ジャッジ時間 19,662 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
51,840 KB
testcase_01 AC 49 ms
52,224 KB
testcase_02 AC 50 ms
51,840 KB
testcase_03 AC 739 ms
124,524 KB
testcase_04 AC 522 ms
103,960 KB
testcase_05 AC 478 ms
96,456 KB
testcase_06 AC 257 ms
82,192 KB
testcase_07 AC 560 ms
115,080 KB
testcase_08 AC 611 ms
108,032 KB
testcase_09 AC 603 ms
106,752 KB
testcase_10 AC 609 ms
118,116 KB
testcase_11 AC 645 ms
109,220 KB
testcase_12 AC 672 ms
118,776 KB
testcase_13 AC 766 ms
126,128 KB
testcase_14 AC 752 ms
126,516 KB
testcase_15 AC 730 ms
123,996 KB
testcase_16 AC 787 ms
126,392 KB
testcase_17 AC 761 ms
126,512 KB
testcase_18 AC 736 ms
125,632 KB
testcase_19 AC 741 ms
126,140 KB
testcase_20 AC 761 ms
123,700 KB
testcase_21 AC 754 ms
125,896 KB
testcase_22 AC 757 ms
126,644 KB
testcase_23 AC 398 ms
120,124 KB
testcase_24 AC 404 ms
119,988 KB
testcase_25 AC 407 ms
120,320 KB
testcase_26 AC 385 ms
120,552 KB
testcase_27 AC 333 ms
115,328 KB
testcase_28 AC 48 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    def find(self, x):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]

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

    def size(self, x):
        return -self.parents[self.find(x)]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return
        if self.rank[x] < self.rank[y]:
            x, y = y, x
        self.parents[x] += self.parents[y]
        self.parents[y] = x
        if self.rank[x] == self.rank[y]:
            self.rank[x] += 1

    def root(self):
        return [i for i in range(self.n) if self.parents[i] < 0]


N, Q = map(int, input().split())
P = [-1]+list(map(int, input().split()))
query = [list(map(int, input().split())) for _ in range(Q)]
state = UnionFind(N+1)
for i, p in enumerate(P):
    if p != -1:
        state.union(i, p)
ans = []
for a, b in query:
    ans.append('Yes' if state.issame(a, b) else 'No')

print(*ans, sep='\n')
0