結果

問題 No.2563 色ごとのグループ
ユーザー RYOH2718RYOH2718
提出日時 2023-12-02 15:37:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,559 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 113,884 KB
最終ジャッジ日時 2024-09-26 19:01:43
合計ジャッジ時間 8,308 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,352 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 43 ms
52,352 KB
testcase_03 AC 42 ms
52,480 KB
testcase_04 AC 42 ms
52,352 KB
testcase_05 AC 42 ms
51,968 KB
testcase_06 AC 42 ms
52,096 KB
testcase_07 AC 43 ms
52,352 KB
testcase_08 AC 42 ms
52,224 KB
testcase_09 AC 46 ms
52,992 KB
testcase_10 AC 43 ms
52,480 KB
testcase_11 AC 46 ms
53,120 KB
testcase_12 AC 43 ms
52,992 KB
testcase_13 AC 43 ms
52,480 KB
testcase_14 AC 83 ms
71,296 KB
testcase_15 AC 85 ms
71,552 KB
testcase_16 AC 84 ms
71,296 KB
testcase_17 AC 85 ms
71,296 KB
testcase_18 AC 59 ms
62,976 KB
testcase_19 AC 94 ms
76,416 KB
testcase_20 AC 110 ms
77,184 KB
testcase_21 AC 102 ms
76,672 KB
testcase_22 AC 101 ms
77,056 KB
testcase_23 AC 107 ms
76,800 KB
testcase_24 AC 207 ms
88,704 KB
testcase_25 AC 188 ms
90,624 KB
testcase_26 AC 239 ms
99,840 KB
testcase_27 AC 251 ms
110,080 KB
testcase_28 AC 277 ms
102,272 KB
testcase_29 AC 340 ms
110,208 KB
testcase_30 AC 330 ms
110,208 KB
testcase_31 AC 341 ms
110,336 KB
testcase_32 AC 336 ms
110,336 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def INT():
    return int(input())


def MI():
    return map(int, input().split())


def LI():
    return list(map(int, input().split()))


class UnionFind:
    def __init__(self, N):
        self.root = [_ for _ in range(N)]
        self.rank = [0] * N
        self.size = [1] * N

    def find(self, x):
        if self.root[x] == x:
            return x
        else:
            # 根を予め取得し,経路圧縮する
            self.root[x] = self.find(self.root[x])
            return self.root[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)

        if x == y:
            return
        else:
            if self.rank[x] > self.rank[y]:
                self.size[x] += self.size[y]
                self.root[y] = x
            else:
                self.size[y] += self.size[x]
                self.root[x] = y
                if self.rank[x] == self.rank[y]:
                    self.rank[y] += 1

    def same(self, x, y):
        return self.find(x) == self.find(y)

    def getSizeOfSet(self, x):
        return self.size[self.find(x)]


N, M = MI()
C = LI()
dsu = UnionFind(N)
for _ in range(M):
    u, v = MI()
    u -= 1
    v -= 1
    if C[u] == C[v]:
        dsu.union(u, v)

cl = [[] for _ in range(N)]
for i in range(N):
    cl[C[i] - 1].append(i)

ans = 0
for i in range(N):
    if len(cl[i]) <= 1:
        continue
    root_c = set()
    for c in cl[i]:
        root_c.add(dsu.root[c])
    ans += len(root_c) - 1

print(ans)
0