結果

問題 No.1390 Get together
ユーザー so4649so4649
提出日時 2021-02-12 21:34:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 458 ms / 2,000 ms
コード長 1,606 bytes
コンパイル時間 953 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 96,792 KB
最終ジャッジ日時 2024-07-19 20:30:33
合計ジャッジ時間 8,838 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 101 ms
76,544 KB
testcase_04 AC 100 ms
76,928 KB
testcase_05 AC 98 ms
76,672 KB
testcase_06 AC 102 ms
76,416 KB
testcase_07 AC 99 ms
77,056 KB
testcase_08 AC 102 ms
77,056 KB
testcase_09 AC 105 ms
77,056 KB
testcase_10 AC 42 ms
52,224 KB
testcase_11 AC 42 ms
52,224 KB
testcase_12 AC 41 ms
52,224 KB
testcase_13 AC 41 ms
52,096 KB
testcase_14 AC 42 ms
52,352 KB
testcase_15 AC 41 ms
52,352 KB
testcase_16 AC 206 ms
93,376 KB
testcase_17 AC 327 ms
95,104 KB
testcase_18 AC 210 ms
92,856 KB
testcase_19 AC 417 ms
95,988 KB
testcase_20 AC 421 ms
96,120 KB
testcase_21 AC 432 ms
96,092 KB
testcase_22 AC 314 ms
95,488 KB
testcase_23 AC 344 ms
95,488 KB
testcase_24 AC 339 ms
95,232 KB
testcase_25 AC 409 ms
96,032 KB
testcase_26 AC 411 ms
96,160 KB
testcase_27 AC 425 ms
96,236 KB
testcase_28 AC 458 ms
96,792 KB
testcase_29 AC 439 ms
96,024 KB
testcase_30 AC 401 ms
95,744 KB
testcase_31 AC 414 ms
96,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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):
        self.group = {r:[] for r in self.roots()}
        for i in range(self.n):
            self.group[self.find(i)].append(i)
        return self.group

    def __str__(self):
        return '\n'.join('{}: {}'.format(r, self.all_group_members()[r]) for r in self.roots())


n,m = map(int,input().split())

a = [[] for i in range(n)]
for i in range(n):
    b,c = map(int,input().split())
    a[c-1].append(b-1)

uf = UnionFind(m)
ans = 0
for g in a:
    x = len(g)
    if x >= 2:
        for i in range(x-1):
            if not uf.same(g[i],g[i+1]):
                ans += 1
                uf.union(g[i],g[i+1])

print(ans)
0