結果

問題 No.1390 Get together
ユーザー 👑 H20H20
提出日時 2021-04-26 01:32:58
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,578 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 86,968 KB
実行使用メモリ 98,864 KB
最終ジャッジ日時 2023-09-17 14:33:23
合計ジャッジ時間 11,084 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
71,528 KB
testcase_01 AC 93 ms
71,412 KB
testcase_02 AC 96 ms
71,528 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 98 ms
71,712 KB
testcase_15 AC 97 ms
71,544 KB
testcase_16 AC 243 ms
93,000 KB
testcase_17 AC 361 ms
96,508 KB
testcase_18 AC 237 ms
92,932 KB
testcase_19 AC 448 ms
97,520 KB
testcase_20 AC 439 ms
97,160 KB
testcase_21 AC 478 ms
98,864 KB
testcase_22 AC 360 ms
96,724 KB
testcase_23 AC 358 ms
96,672 KB
testcase_24 AC 369 ms
96,772 KB
testcase_25 AC 457 ms
98,300 KB
testcase_26 AC 443 ms
97,600 KB
testcase_27 AC 453 ms
97,812 KB
testcase_28 AC 443 ms
97,768 KB
testcase_29 AC 454 ms
97,584 KB
testcase_30 AC 473 ms
98,148 KB
testcase_31 AC 440 ms
97,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

class UnionFind():
    def __init__(self, n):
        self.n = n
        self.parents = [-1] * 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 union(self, x, 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):
        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,M = map(int, input().split())
L = [[] for i in range(N+1)]


for i in range(N):
    b,c = map(int, input().split())
    L[c].append(b)

uf = UnionFind(N+1)
cnt = 0
for l in L:
    for c in l:
        if not uf.same(l[0],c):
            uf.union(l[0],c)
            cnt+=1
print(cnt)
0