結果

問題 No.2563 色ごとのグループ
ユーザー かもめのうでかもめのうで
提出日時 2023-12-02 19:57:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 498 ms / 2,000 ms
コード長 2,180 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 112,512 KB
最終ジャッジ日時 2024-09-26 21:34:46
合計ジャッジ時間 8,402 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
53,632 KB
testcase_01 AC 47 ms
53,504 KB
testcase_02 AC 47 ms
53,888 KB
testcase_03 AC 47 ms
53,760 KB
testcase_04 AC 47 ms
53,888 KB
testcase_05 AC 46 ms
53,760 KB
testcase_06 AC 46 ms
53,760 KB
testcase_07 AC 47 ms
54,144 KB
testcase_08 AC 47 ms
53,760 KB
testcase_09 AC 49 ms
54,656 KB
testcase_10 AC 46 ms
53,888 KB
testcase_11 AC 49 ms
54,400 KB
testcase_12 AC 48 ms
54,400 KB
testcase_13 AC 47 ms
54,016 KB
testcase_14 AC 81 ms
71,936 KB
testcase_15 AC 82 ms
72,064 KB
testcase_16 AC 82 ms
71,808 KB
testcase_17 AC 81 ms
71,552 KB
testcase_18 AC 59 ms
63,744 KB
testcase_19 AC 91 ms
76,672 KB
testcase_20 AC 108 ms
78,080 KB
testcase_21 AC 108 ms
77,184 KB
testcase_22 AC 105 ms
76,928 KB
testcase_23 AC 110 ms
77,312 KB
testcase_24 AC 217 ms
89,344 KB
testcase_25 AC 195 ms
91,392 KB
testcase_26 AC 243 ms
100,352 KB
testcase_27 AC 240 ms
111,616 KB
testcase_28 AC 270 ms
103,808 KB
testcase_29 AC 324 ms
112,128 KB
testcase_30 AC 324 ms
112,128 KB
testcase_31 AC 324 ms
112,256 KB
testcase_32 AC 338 ms
112,256 KB
testcase_33 AC 490 ms
112,384 KB
testcase_34 AC 498 ms
111,744 KB
testcase_35 AC 481 ms
111,744 KB
testcase_36 AC 492 ms
112,256 KB
testcase_37 AC 484 ms
112,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
class UnionFind():
    def __init__(self, n):
        self.par = [-1]*n#頂点xの親を記録
        self.rank = [0]*n#頂点xが属する根付き木の高さを記録
        self.siz = [1]*n#その頂点数を記録
        self.edgecount = [0]*n#頂点xの親の属する根付き木の辺の数

    #xの根を求める
    def root(self, x):
        # while True:
        #     if self.par[x] == -1:
        #         break
        #     x = self.par[x]
        # return x
        #経路圧縮
        if self.par[x] == -1:
            return x
        else:
            self.par[x] = self.root(self.par[x])
            return self.par[x]
        
    #xとyの統合
    def unite(self, x, y):
        rx = self.root(x)
        ry = self.root(y)
        if rx == ry:
            self.edgecount[rx] += 1
            return False
        #union by size
        if self.siz[rx] < self.siz[ry]:
            self.par[rx] = ry
            self.siz[ry] += self.siz[rx]
            self.edgecount[ry] += 1 + self.edgecount[rx]
        else:
            self.par[ry] = rx
            self.siz[rx] += self.siz[ry]
            self.edgecount[rx] += 1 + self.edgecount[ry]
        return True
    
    #xとyが同じグループに属すか
    def issame(self, x, y):
        if self.root(x) == self.root(y):
            return True
        return False
    
    #xが属すグループの要素数を返す
    def size(self, x):
        return self.siz[self.root(x)]

    #頂点xの親の属する根付き木の辺の数を返す
    def edge(self, x):
        return self.edgecount[self.root(x)]
    
    #連結成分の個数を返す
    def groupcount(self, x):
        dic = defaultdict(int)
        for i in range(x):
            dic[self.root(i)] += 1
        return len(dic)
    
n, m = map(int, input().split())
c = list(map(int, input().split()))
uf = UnionFind(n)
for _ in range(m):
    v, u = map(int, input().split())
    v -= 1
    u -= 1
    if c[v] == c[u]:
        uf.unite(v, u)
d = defaultdict(int)
for i in range(n):
    if i == uf.root(i):
        d[c[i]] += 1
ans = 0
for i, j in d.items():
    ans += j-1
print(ans)
0