結果

問題 No.2563 色ごとのグループ
ユーザー MMMM
提出日時 2023-12-02 17:34:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,213 ms / 2,000 ms
コード長 941 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 36,464 KB
最終ジャッジ日時 2024-09-26 21:15:32
合計ジャッジ時間 14,862 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 27 ms
10,496 KB
testcase_04 AC 27 ms
10,496 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 27 ms
10,496 KB
testcase_08 AC 29 ms
10,496 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 28 ms
10,496 KB
testcase_11 AC 28 ms
10,624 KB
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 26 ms
10,496 KB
testcase_14 AC 33 ms
11,008 KB
testcase_15 AC 37 ms
10,880 KB
testcase_16 AC 35 ms
10,752 KB
testcase_17 AC 34 ms
11,008 KB
testcase_18 AC 29 ms
10,752 KB
testcase_19 AC 52 ms
10,752 KB
testcase_20 AC 76 ms
13,056 KB
testcase_21 AC 61 ms
11,520 KB
testcase_22 AC 57 ms
11,392 KB
testcase_23 AC 88 ms
11,648 KB
testcase_24 AC 570 ms
21,800 KB
testcase_25 AC 444 ms
22,672 KB
testcase_26 AC 600 ms
26,432 KB
testcase_27 AC 422 ms
35,656 KB
testcase_28 AC 712 ms
31,736 KB
testcase_29 AC 895 ms
36,464 KB
testcase_30 AC 948 ms
36,364 KB
testcase_31 AC 924 ms
36,368 KB
testcase_32 AC 910 ms
36,364 KB
testcase_33 AC 1,155 ms
30,588 KB
testcase_34 AC 1,151 ms
30,656 KB
testcase_35 AC 1,213 ms
30,528 KB
testcase_36 AC 1,128 ms
30,724 KB
testcase_37 AC 1,129 ms
30,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, size):
        self.parent = [i for i in range(size)]

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

    def merge(self, x, y):
        x_root = self.find(x)
        y_root = self.find(y)
        if x_root != y_root:
            self.parent[x_root] = y_root

    def leader(self, x):
        return self.find(x)


# Read N and M
N, M = map(int, input().split())

# Read C
C = list(map(int, input().split()))

# Initialize UnionFind
uf = UnionFind(N)

# Process the edges
for _ in range(M):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    if C[u] == C[v]:
        uf.merge(u, v)

# Count the groups
mp = {}
for i in range(N):
    leader = uf.leader(i)
    if leader == i:
        mp[C[i]] = mp.get(C[i], 0) + 1

# Calculate the answer
ans = sum(value - 1 for value in mp.values())
print(ans)
0