結果

問題 No.1390 Get together
ユーザー 👑 H20H20
提出日時 2021-02-12 21:46:55
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,650 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 86,844 KB
実行使用メモリ 110,596 KB
最終ジャッジ日時 2023-09-27 03:33:51
合計ジャッジ時間 11,341 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
71,504 KB
testcase_01 AC 95 ms
71,200 KB
testcase_02 AC 94 ms
71,560 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 94 ms
71,612 KB
testcase_15 AC 94 ms
71,628 KB
testcase_16 AC 258 ms
97,628 KB
testcase_17 AC 373 ms
110,596 KB
testcase_18 AC 245 ms
97,668 KB
testcase_19 AC 484 ms
106,352 KB
testcase_20 AC 446 ms
109,736 KB
testcase_21 AC 494 ms
110,208 KB
testcase_22 AC 348 ms
102,100 KB
testcase_23 AC 354 ms
102,508 KB
testcase_24 AC 360 ms
100,620 KB
testcase_25 AC 445 ms
105,108 KB
testcase_26 AC 441 ms
106,240 KB
testcase_27 AC 473 ms
106,756 KB
testcase_28 AC 445 ms
106,220 KB
testcase_29 AC 446 ms
106,160 KB
testcase_30 AC 439 ms
105,412 KB
testcase_31 AC 447 ms
105,904 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