結果

問題 No.2563 色ごとのグループ
ユーザー i_takui_taku
提出日時 2024-06-07 13:58:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 492 ms / 2,000 ms
コード長 1,900 bytes
コンパイル時間 1,921 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 139,128 KB
最終ジャッジ日時 2024-06-07 13:58:14
合計ジャッジ時間 9,625 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,888 KB
testcase_01 AC 44 ms
53,760 KB
testcase_02 AC 42 ms
54,016 KB
testcase_03 AC 41 ms
53,888 KB
testcase_04 AC 43 ms
54,272 KB
testcase_05 AC 43 ms
54,144 KB
testcase_06 AC 46 ms
54,528 KB
testcase_07 AC 43 ms
54,016 KB
testcase_08 AC 44 ms
53,632 KB
testcase_09 AC 45 ms
55,040 KB
testcase_10 AC 43 ms
54,528 KB
testcase_11 AC 45 ms
55,168 KB
testcase_12 AC 44 ms
54,400 KB
testcase_13 AC 44 ms
54,016 KB
testcase_14 AC 74 ms
72,448 KB
testcase_15 AC 75 ms
73,216 KB
testcase_16 AC 77 ms
72,320 KB
testcase_17 AC 73 ms
72,448 KB
testcase_18 AC 55 ms
65,536 KB
testcase_19 AC 81 ms
77,032 KB
testcase_20 AC 90 ms
78,592 KB
testcase_21 AC 84 ms
76,800 KB
testcase_22 AC 98 ms
77,000 KB
testcase_23 AC 91 ms
76,952 KB
testcase_24 AC 195 ms
98,768 KB
testcase_25 AC 175 ms
101,760 KB
testcase_26 AC 248 ms
116,992 KB
testcase_27 AC 250 ms
137,600 KB
testcase_28 AC 276 ms
123,008 KB
testcase_29 AC 340 ms
138,624 KB
testcase_30 AC 337 ms
138,752 KB
testcase_31 AC 336 ms
138,368 KB
testcase_32 AC 360 ms
138,496 KB
testcase_33 AC 458 ms
138,624 KB
testcase_34 AC 490 ms
138,496 KB
testcase_35 AC 464 ms
138,436 KB
testcase_36 AC 473 ms
139,128 KB
testcase_37 AC 492 ms
138,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self._n = n
        self._parent = [-1] * n
        self._roots = set(range(n))

    def _find(self, x):
        if self._parent[x] < 0:
            return x
        self._parent[x] = self._find(self._parent[x])
        return self._parent[x]

    def union(self, x, y):
        x, y = self._find(x), self._find(y)
        if x == y:
            return
        if self._parent[y] < self._parent[x]:
            x, y = y, x
        self._parent[x] += self._parent[y]
        self._parent[y] = x
        self._roots.discard(y)

    def same(self, x, y):
        return self._find(x) == self._find(y)
    
    def size(self, x):
        return -self._parent[self._find(x)]

    def members(self, x):
        root = self._find(x)
        return [i for i in range(self._n) if self._find(i) == root]
    
    def all_group_members(self):
        group_members = dict()
        for member in range(self._n):
            root = self._find(member)
            if root not in group_members:
                group_members[root] = []
            group_members[root].append(member)
        return group_members

    def root(self, x):
        return self._find(x)

    def roots(self):
        return self._roots
    
    def group_count(self):
        return len(self.roots())
    
    def group_numbers(self):
        return [self._find(i) for i in range(self._n)]
    
    def __str__(self):
        return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items())


N, M = map(int, input().split())
C = list(map(int, input().split()))
uf = UnionFind(N)
for _ in range(M):
    u, v = map(int, input().split())
    u, v = u - 1, v - 1
    if C[u] == C[v]:
        uf.union(u, v)
from collections import defaultdict
d = defaultdict(set)
for i, c in enumerate(C):
    d[c].add(uf.root(i))
ans = 0
for v in d.values():
    ans += len(v) - 1
print(ans)
0