結果

問題 No.2563 色ごとのグループ
ユーザー kemunikukemuniku
提出日時 2023-12-02 14:59:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,131 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 123,136 KB
最終ジャッジ日時 2024-09-26 17:52:17
合計ジャッジ時間 7,874 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,760 KB
testcase_01 AC 43 ms
53,504 KB
testcase_02 AC 44 ms
54,016 KB
testcase_03 AC 43 ms
53,760 KB
testcase_04 AC 43 ms
53,760 KB
testcase_05 AC 44 ms
53,376 KB
testcase_06 AC 43 ms
53,504 KB
testcase_07 AC 44 ms
53,760 KB
testcase_08 AC 44 ms
53,888 KB
testcase_09 AC 46 ms
54,272 KB
testcase_10 AC 43 ms
54,016 KB
testcase_11 AC 46 ms
54,528 KB
testcase_12 AC 44 ms
54,272 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 77 ms
72,320 KB
testcase_16 AC 77 ms
71,936 KB
testcase_17 AC 78 ms
71,808 KB
testcase_18 AC 57 ms
64,512 KB
testcase_19 WA -
testcase_20 AC 105 ms
79,616 KB
testcase_21 AC 98 ms
77,696 KB
testcase_22 WA -
testcase_23 AC 102 ms
77,696 KB
testcase_24 AC 197 ms
99,712 KB
testcase_25 AC 189 ms
101,376 KB
testcase_26 AC 222 ms
102,528 KB
testcase_27 AC 223 ms
111,356 KB
testcase_28 AC 245 ms
103,296 KB
testcase_29 AC 294 ms
112,572 KB
testcase_30 WA -
testcase_31 AC 292 ms
112,808 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind():
    def __init__(self, n):
        self.count = n
        self.par = [-1]*n
        self.siz = [1]*n
    def root(self,x):
        if(self.par[x] == -1):
            return x
        else:
            self.par[x] = self.root(self.par[x])
            return self.par[x]
    def issame(self,x,y):
        return self.root(x) == self.root(y)
    def unite(self,x,y):
        x = self.root(x)
        y = self.root(y)
        if(x == y):
            return False
        if(self.siz[x]<self.siz[y]):
            x,y = y,x
        self.par[y] = x
        self.siz[x] += self.siz[y]
        self.count -= 1
        return True
    def size(self,x):
        return self.siz[self.root(x)]
from collections import defaultdict
N,M = map(int,input().split())
C = list(map(int,input().split()))
d = defaultdict(list)
for i in range(N):
    d[C[i]].append(i)
uf = UnionFind(N)
for i in range(M):
    u,v = map(int,input().split())
    u-=1
    v-=1
    if C[u] == C[v]:
        uf.unite(u,v)
ans = 0
for c in d:
    x = d[c]
    for i in range(len(x)-1):
        if not uf.issame(x[i],x[i+1]):
            ans += 1
print(ans)
0