結果

問題 No.2563 色ごとのグループ
ユーザー n_nan_na
提出日時 2024-01-04 10:37:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 463 ms / 2,000 ms
コード長 1,493 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 110,824 KB
最終ジャッジ日時 2024-09-27 18:36:54
合計ジャッジ時間 8,421 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,420 KB
testcase_01 AC 38 ms
53,812 KB
testcase_02 AC 38 ms
52,824 KB
testcase_03 AC 38 ms
53,300 KB
testcase_04 AC 38 ms
53,140 KB
testcase_05 AC 37 ms
52,996 KB
testcase_06 AC 38 ms
53,452 KB
testcase_07 AC 38 ms
53,024 KB
testcase_08 AC 39 ms
53,172 KB
testcase_09 AC 41 ms
53,540 KB
testcase_10 AC 38 ms
54,296 KB
testcase_11 AC 41 ms
54,668 KB
testcase_12 AC 40 ms
53,620 KB
testcase_13 AC 40 ms
53,476 KB
testcase_14 AC 71 ms
72,100 KB
testcase_15 AC 70 ms
72,836 KB
testcase_16 AC 69 ms
71,608 KB
testcase_17 AC 69 ms
72,316 KB
testcase_18 AC 51 ms
63,264 KB
testcase_19 AC 74 ms
75,028 KB
testcase_20 AC 84 ms
77,540 KB
testcase_21 AC 81 ms
77,184 KB
testcase_22 AC 81 ms
76,796 KB
testcase_23 AC 90 ms
76,840 KB
testcase_24 AC 186 ms
88,276 KB
testcase_25 AC 171 ms
90,196 KB
testcase_26 AC 216 ms
99,856 KB
testcase_27 AC 253 ms
109,972 KB
testcase_28 AC 257 ms
103,104 KB
testcase_29 AC 330 ms
110,464 KB
testcase_30 AC 336 ms
110,260 KB
testcase_31 AC 342 ms
110,356 KB
testcase_32 AC 341 ms
110,500 KB
testcase_33 AC 461 ms
110,624 KB
testcase_34 AC 456 ms
110,288 KB
testcase_35 AC 463 ms
110,240 KB
testcase_36 AC 459 ms
110,824 KB
testcase_37 AC 462 ms
110,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    
    def __init__(self, n):
        self.par = [-1]*n # 要素の根(親)
        self.rank = [0]*n # 要素が属している木の高さ
        self.siz = [1]*n # 要素が属している木の大きさ(要素数)

    # xのroot(Find)
    def root(self, x):
        if self.par[x] == -1:
            return x
        else:
            self.par[x] = self.root(self.par[x])
            return self.par[x]
    
    # xとyをmerge(Union)
    def merge(self, x, y):
        rx,ry = self.root(x), self.root(y)
        if rx == ry: return False
        if self.rank[rx] < self.rank[ry]:
            rx,ry = ry,rx # rx: 親, ry: 子
        self.par[ry] = rx
        if self.rank[rx] == self.rank[ry]:
            self.rank[rx] += 1        
        self.siz[rx] += self.siz[ry]
        return True
            
    # xとyが同一のgroupかどうか
    def issame(self, x, y):
        return self.root(x) == self.root(y)
    
    # xが含まれる木のサイズ
    def size(self, x):
        return self.siz[self.root(x)]

#---------------------------------------------------
N,M = map(int,input().split())
uf = UnionFind(N)

C = list(map(int,input().split()))

for _ in range(M):
    u,v = map(int,input().split())
    if C[u-1] != C[v-1]: continue
    uf.merge(u-1, v-1)
    
par = [set() for _ in range(N)]
for i in range(N):
    idx = uf.root(i)
    par[C[i] - 1].add(idx)

ans = 0
for p in par:
    if not p: continue
    ans += len(p) - 1
    
print(ans)
0