結果

問題 No.2316 Freight Train
ユーザー gr1msl3ygr1msl3y
提出日時 2023-05-28 00:50:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 607 ms / 2,000 ms
コード長 1,184 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 126,640 KB
最終ジャッジ日時 2024-06-07 21:04:48
合計ジャッジ時間 16,376 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 577 ms
124,652 KB
testcase_04 AC 417 ms
103,768 KB
testcase_05 AC 384 ms
96,444 KB
testcase_06 AC 199 ms
82,104 KB
testcase_07 AC 426 ms
115,204 KB
testcase_08 AC 483 ms
107,776 KB
testcase_09 AC 488 ms
106,780 KB
testcase_10 AC 488 ms
118,204 KB
testcase_11 AC 498 ms
109,340 KB
testcase_12 AC 538 ms
119,156 KB
testcase_13 AC 594 ms
126,640 KB
testcase_14 AC 595 ms
126,264 KB
testcase_15 AC 593 ms
124,592 KB
testcase_16 AC 607 ms
126,268 KB
testcase_17 AC 589 ms
126,520 KB
testcase_18 AC 583 ms
125,628 KB
testcase_19 AC 583 ms
126,132 KB
testcase_20 AC 580 ms
123,700 KB
testcase_21 AC 582 ms
126,012 KB
testcase_22 AC 590 ms
126,140 KB
testcase_23 AC 307 ms
120,120 KB
testcase_24 AC 323 ms
120,088 KB
testcase_25 AC 315 ms
120,084 KB
testcase_26 AC 301 ms
120,184 KB
testcase_27 AC 259 ms
114,944 KB
testcase_28 AC 40 ms
51,712 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