結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,480 KB
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 42 ms
52,480 KB
testcase_03 AC 42 ms
52,352 KB
testcase_04 AC 42 ms
52,480 KB
testcase_05 AC 42 ms
52,480 KB
testcase_06 AC 42 ms
52,460 KB
testcase_07 AC 42 ms
52,480 KB
testcase_08 AC 41 ms
52,096 KB
testcase_09 AC 45 ms
53,248 KB
testcase_10 AC 42 ms
52,864 KB
testcase_11 AC 45 ms
53,376 KB
testcase_12 AC 43 ms
52,864 KB
testcase_13 AC 43 ms
52,864 KB
testcase_14 AC 81 ms
71,296 KB
testcase_15 AC 82 ms
72,064 KB
testcase_16 AC 85 ms
71,296 KB
testcase_17 AC 81 ms
71,424 KB
testcase_18 AC 59 ms
62,592 KB
testcase_19 AC 87 ms
76,288 KB
testcase_20 AC 105 ms
77,312 KB
testcase_21 AC 104 ms
76,788 KB
testcase_22 AC 95 ms
77,056 KB
testcase_23 AC 112 ms
76,972 KB
testcase_24 AC 227 ms
88,704 KB
testcase_25 AC 184 ms
90,480 KB
testcase_26 AC 262 ms
99,328 KB
testcase_27 AC 261 ms
109,580 KB
testcase_28 AC 278 ms
102,724 KB
testcase_29 AC 328 ms
110,224 KB
testcase_30 AC 346 ms
110,252 KB
testcase_31 AC 342 ms
110,720 KB
testcase_32 AC 341 ms
110,104 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()
    all_same = True
    for c in cl[i]:
        root_c.add(dsu.root[c])
        if dsu.root[c] != c:
            all_same = False
    if all_same:
        ans += len(cl[i]) - 1
    else:
        ans += len(root_c) - 1

print(ans)
0