結果

問題 No.1390 Get together
ユーザー H20H20
提出日時 2021-02-12 21:46:55
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,650 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 109,420 KB
最終ジャッジ日時 2024-07-19 20:56:12
合計ジャッジ時間 9,108 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,632 KB
testcase_01 AC 47 ms
53,632 KB
testcase_02 AC 47 ms
54,016 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 47 ms
53,632 KB
testcase_15 AC 46 ms
53,504 KB
testcase_16 AC 222 ms
99,200 KB
testcase_17 AC 354 ms
109,420 KB
testcase_18 AC 217 ms
97,636 KB
testcase_19 AC 453 ms
105,080 KB
testcase_20 AC 425 ms
108,800 KB
testcase_21 AC 469 ms
108,792 KB
testcase_22 AC 329 ms
101,460 KB
testcase_23 AC 339 ms
101,148 KB
testcase_24 AC 343 ms
101,168 KB
testcase_25 AC 432 ms
104,180 KB
testcase_26 AC 421 ms
105,080 KB
testcase_27 AC 444 ms
104,956 KB
testcase_28 AC 415 ms
104,060 KB
testcase_29 AC 425 ms
104,952 KB
testcase_30 AC 414 ms
105,084 KB
testcase_31 AC 425 ms
104,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# UnionFind 参考は以下のサイト
# https://note.nkmk.me/python-union-find/
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):
    L.append([])

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

uf = UnionFind(N+1)
for l in L:
    for i in range(1,len(l)):
        uf.union(l[0],l[i])


print(N-uf.group_count()+1)
0