結果

問題 No.2563 色ごとのグループ
ユーザー e60e256e60e256
提出日時 2023-12-02 15:49:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 439 ms / 2,000 ms
コード長 1,581 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 130,988 KB
最終ジャッジ日時 2024-09-26 19:22:08
合計ジャッジ時間 7,572 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 41 ms
52,352 KB
testcase_04 AC 41 ms
51,712 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 40 ms
51,584 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 42 ms
51,968 KB
testcase_09 AC 43 ms
52,736 KB
testcase_10 AC 40 ms
51,712 KB
testcase_11 AC 43 ms
53,120 KB
testcase_12 AC 42 ms
52,736 KB
testcase_13 AC 41 ms
52,224 KB
testcase_14 AC 78 ms
70,528 KB
testcase_15 AC 76 ms
70,784 KB
testcase_16 AC 78 ms
70,656 KB
testcase_17 AC 76 ms
70,656 KB
testcase_18 AC 54 ms
62,464 KB
testcase_19 AC 85 ms
74,624 KB
testcase_20 AC 96 ms
78,976 KB
testcase_21 AC 95 ms
76,672 KB
testcase_22 AC 91 ms
76,544 KB
testcase_23 AC 96 ms
76,544 KB
testcase_24 AC 192 ms
96,548 KB
testcase_25 AC 176 ms
92,596 KB
testcase_26 AC 214 ms
100,728 KB
testcase_27 AC 211 ms
112,192 KB
testcase_28 AC 239 ms
117,792 KB
testcase_29 AC 296 ms
130,988 KB
testcase_30 AC 291 ms
130,608 KB
testcase_31 AC 288 ms
130,732 KB
testcase_32 AC 287 ms
130,720 KB
testcase_33 AC 439 ms
109,056 KB
testcase_34 AC 436 ms
108,160 KB
testcase_35 AC 435 ms
108,800 KB
testcase_36 AC 438 ms
109,312 KB
testcase_37 AC 434 ms
108,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 違う色の頂点をつなぐ辺は無視してよい。
# 閉路を作っても意味ないので無視してよい。
# 辺が同じ色同士かつ閉路を持っていない場合 UnionFindでくっつける。
# 各集合の大きさを把握しておく。
# Σ色, (UnionFindでのその色の集合の個数 - 1) 本だけ線を入れる必要がある。


class UnionFind:
    def __init__(self, size):
        self.parent = list(range(size))
        self.rank = [0] * size

    def find(self, x):
        if self.parent[x] != x:
            self.parent[x] = self.find(self.parent[x])  # Path compression
        return self.parent[x]

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

        if px == py:  # Already in the same set
            return

        # Union by rank
        if self.rank[px] > self.rank[py]:
            self.parent[py] = px
        elif self.rank[px] < self.rank[py]:
            self.parent[px] = py
        else:
            self.parent[py] = px
            self.rank[px] += 1


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

uf = UnionFind(N)
for i in range(M):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    if (C[u] == C[v]):
        uf.union(u, v)


parents = set()
for i in range(N):
    parents.add(uf.find(i))

parentcolor = dict()
for parent in parents:
    if (not C[parent] in parentcolor):
        parentcolor[C[parent]] = 1
    else:
        parentcolor[C[parent]] += 1
        
ans = 0
for key, value in parentcolor.items():
    ans += value - 1
print(ans)
0