結果

問題 No.2316 Freight Train
ユーザー cozy_saunacozy_sauna
提出日時 2023-05-30 23:56:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 827 ms / 2,000 ms
コード長 1,351 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 108,160 KB
最終ジャッジ日時 2024-06-08 20:50:13
合計ジャッジ時間 20,210 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 35 ms
52,608 KB
testcase_02 AC 36 ms
52,864 KB
testcase_03 AC 787 ms
107,520 KB
testcase_04 AC 505 ms
89,984 KB
testcase_05 AC 447 ms
90,204 KB
testcase_06 AC 224 ms
78,336 KB
testcase_07 AC 590 ms
82,176 KB
testcase_08 AC 551 ms
108,160 KB
testcase_09 AC 629 ms
94,720 KB
testcase_10 AC 624 ms
89,984 KB
testcase_11 AC 644 ms
103,552 KB
testcase_12 AC 666 ms
100,224 KB
testcase_13 AC 792 ms
107,776 KB
testcase_14 AC 743 ms
108,072 KB
testcase_15 AC 756 ms
107,520 KB
testcase_16 AC 765 ms
108,108 KB
testcase_17 AC 827 ms
107,648 KB
testcase_18 AC 762 ms
107,648 KB
testcase_19 AC 764 ms
107,520 KB
testcase_20 AC 726 ms
108,160 KB
testcase_21 AC 743 ms
107,904 KB
testcase_22 AC 757 ms
108,032 KB
testcase_23 AC 464 ms
107,904 KB
testcase_24 AC 479 ms
108,032 KB
testcase_25 AC 469 ms
105,668 KB
testcase_26 AC 494 ms
105,664 KB
testcase_27 AC 421 ms
76,300 KB
testcase_28 AC 39 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y: return
        if self.P[x] > self.P[y]: x, y = y, x
        self.P[x] += self.P[y]
        self.P[y] = x

    def size(self, x): return -self.P[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.P) if x < 0]

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

    def group_and_members(self):
        group_info = dict()
        for member in range(self.n): 
            g_id = self.find(member)
            if g_id not in group_info: group_info[g_id] = []
            group_info[g_id].append(member)
        return group_info


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

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





0