結果

問題 No.2563 色ごとのグループ
ユーザー navel_tosnavel_tos
提出日時 2023-12-02 15:48:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 458 ms / 2,000 ms
コード長 1,254 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 111,156 KB
最終ジャッジ日時 2024-09-26 19:20:22
合計ジャッジ時間 8,937 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
54,144 KB
testcase_01 AC 48 ms
53,760 KB
testcase_02 AC 48 ms
54,144 KB
testcase_03 AC 48 ms
53,888 KB
testcase_04 AC 50 ms
54,144 KB
testcase_05 AC 50 ms
53,760 KB
testcase_06 AC 48 ms
53,760 KB
testcase_07 AC 48 ms
53,632 KB
testcase_08 AC 48 ms
53,884 KB
testcase_09 AC 51 ms
54,784 KB
testcase_10 AC 55 ms
54,528 KB
testcase_11 AC 51 ms
54,912 KB
testcase_12 AC 50 ms
54,272 KB
testcase_13 AC 50 ms
54,144 KB
testcase_14 AC 97 ms
77,060 KB
testcase_15 AC 96 ms
76,596 KB
testcase_16 AC 96 ms
77,028 KB
testcase_17 AC 94 ms
77,312 KB
testcase_18 AC 70 ms
68,480 KB
testcase_19 AC 97 ms
76,928 KB
testcase_20 AC 109 ms
77,720 KB
testcase_21 AC 102 ms
77,132 KB
testcase_22 AC 104 ms
77,040 KB
testcase_23 AC 111 ms
76,952 KB
testcase_24 AC 210 ms
87,780 KB
testcase_25 AC 195 ms
89,600 KB
testcase_26 AC 235 ms
98,200 KB
testcase_27 AC 226 ms
108,772 KB
testcase_28 AC 281 ms
100,904 KB
testcase_29 AC 365 ms
110,996 KB
testcase_30 AC 356 ms
111,020 KB
testcase_31 AC 354 ms
111,156 KB
testcase_32 AC 350 ms
111,024 KB
testcase_33 AC 458 ms
109,344 KB
testcase_34 AC 448 ms
109,300 KB
testcase_35 AC 457 ms
108,800 KB
testcase_36 AC 458 ms
109,568 KB
testcase_37 AC 432 ms
109,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#緑以下G

#UnionFind
class UnionFind:
    def __init__(self,N): self._parent=[-1 for i in[0]*N]
    def find(self,v):  #頂点vの親を探し、経路圧縮する
        vertices=[]
        while self._parent[v]>=0: vertices.append(v);v=self._parent[v]
        for i in vertices: self._parent[i]=v
        return v
    def unite(self,x,y):  #頂点xとyを併合し、併合の有無を返す
        x,y = self.find(x),self.find(y)
        if x==y: return 0
        if self._parent[x]>self._parent[y]: x,y=y,x  #負値で管理
        self._parent[x]+=self._parent[y]; self._parent[y]=x; return 1
    def same(self,x,y):return self.find(x)==self.find(y)   #xとyは同一集合か返す
    def size(self,x):  return -self._parent[self.find(x)]  #xの集合のサイズを求める


from collections import defaultdict

#入力受取
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 c in D.keys():
    base = D[c][0]
    for i in D[c]:
        if not UF.same(base,i): UF.unite(base,i); ans += 1
print(ans)
0