結果

問題 No.2563 色ごとのグループ
ユーザー noriocnorioc
提出日時 2024-07-12 03:10:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 501 ms / 2,000 ms
コード長 1,519 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 113,092 KB
最終ジャッジ日時 2024-07-12 03:10:30
合計ジャッジ時間 10,739 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,272 KB
testcase_01 AC 46 ms
53,888 KB
testcase_02 AC 48 ms
53,632 KB
testcase_03 AC 47 ms
53,888 KB
testcase_04 AC 48 ms
54,016 KB
testcase_05 AC 47 ms
53,760 KB
testcase_06 AC 48 ms
53,504 KB
testcase_07 AC 49 ms
54,400 KB
testcase_08 AC 47 ms
54,144 KB
testcase_09 AC 49 ms
55,040 KB
testcase_10 AC 48 ms
53,888 KB
testcase_11 AC 51 ms
54,784 KB
testcase_12 AC 48 ms
54,400 KB
testcase_13 AC 48 ms
54,528 KB
testcase_14 AC 86 ms
74,112 KB
testcase_15 AC 94 ms
75,136 KB
testcase_16 AC 96 ms
75,008 KB
testcase_17 AC 90 ms
74,420 KB
testcase_18 AC 64 ms
65,664 KB
testcase_19 AC 97 ms
76,800 KB
testcase_20 AC 110 ms
77,944 KB
testcase_21 AC 101 ms
77,180 KB
testcase_22 AC 106 ms
77,056 KB
testcase_23 AC 111 ms
77,184 KB
testcase_24 AC 218 ms
91,408 KB
testcase_25 AC 234 ms
93,252 KB
testcase_26 AC 248 ms
101,516 KB
testcase_27 AC 243 ms
111,964 KB
testcase_28 AC 281 ms
101,248 KB
testcase_29 AC 345 ms
113,092 KB
testcase_30 AC 334 ms
112,880 KB
testcase_31 AC 347 ms
112,632 KB
testcase_32 AC 336 ms
112,768 KB
testcase_33 AC 501 ms
109,636 KB
testcase_34 AC 458 ms
108,672 KB
testcase_35 AC 467 ms
109,056 KB
testcase_36 AC 497 ms
109,440 KB
testcase_37 AC 474 ms
109,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import groupby
from collections import defaultdict


class UnionFind:
    def __init__(self, n: int):
        self.data = [-1] * (n+1)
        self.nexts = [i for i in range(n+1)]

    def root(self, a: int) -> int:
        if self.data[a] < 0: return a
        self.data[a] = self.root(self.data[a])
        return self.data[a]

    def unite(self, a: int, b: int) -> bool:
        pa = self.root(a)
        pb = self.root(b)
        if pa == pb: return False
        if self.data[pa] > self.data[pb]:
            pa, pb = pb, pa
        self.data[pa] += self.data[pb] # pa を pb をつなげる
        self.data[pb] = pa
        self.nexts[pa], self.nexts[pb] = self.nexts[pb], self.nexts[pa]
        return True

    def issame(self, a: int, b: int) -> bool:
        return self.root(a) == self.root(b)

    def size(self, a: int) -> int:
        """a が属する集合のサイズ"""
        return -self.data[self.root(a)]

    def group(self, a: int):
        """a が属する集合"""
        yield a
        x = a
        while self.nexts[x] != a:
            x = self.nexts[x]
            yield x


N, M = map(int, input().split())
C = list(map(int, input().split()))
uf = UnionFind(N)
for _ in range(M):
    u, v = map(lambda x: int(x)-1, input().split())
    if C[u] == C[v]:
        uf.unite(u, v)

d = defaultdict(list)
for i, c in enumerate(C):
    d[c].append(i)

ans = 0
for k, v in d.items():
    s = set()
    for x in v:
        s.add(uf.root(x))
    ans += len(s) - 1

print(ans)
0