結果

問題 No.2563 色ごとのグループ
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2023-11-24 01:36:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 484 ms / 2,000 ms
コード長 862 bytes
コンパイル時間 537 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 108,416 KB
最終ジャッジ日時 2024-09-26 16:34:46
合計ジャッジ時間 7,492 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,504 KB
testcase_01 AC 46 ms
53,632 KB
testcase_02 AC 48 ms
53,632 KB
testcase_03 AC 46 ms
53,760 KB
testcase_04 AC 46 ms
53,504 KB
testcase_05 AC 46 ms
54,272 KB
testcase_06 AC 46 ms
53,888 KB
testcase_07 AC 47 ms
53,632 KB
testcase_08 AC 47 ms
53,632 KB
testcase_09 AC 49 ms
54,400 KB
testcase_10 AC 47 ms
53,760 KB
testcase_11 AC 48 ms
54,784 KB
testcase_12 AC 47 ms
54,272 KB
testcase_13 AC 47 ms
54,016 KB
testcase_14 AC 69 ms
66,688 KB
testcase_15 AC 68 ms
67,456 KB
testcase_16 AC 67 ms
67,200 KB
testcase_17 AC 69 ms
67,200 KB
testcase_18 AC 62 ms
64,640 KB
testcase_19 AC 70 ms
69,888 KB
testcase_20 AC 87 ms
78,080 KB
testcase_21 AC 73 ms
73,088 KB
testcase_22 AC 72 ms
71,424 KB
testcase_23 AC 86 ms
77,332 KB
testcase_24 AC 140 ms
88,932 KB
testcase_25 AC 132 ms
90,924 KB
testcase_26 AC 161 ms
100,352 KB
testcase_27 AC 163 ms
108,416 KB
testcase_28 AC 175 ms
103,680 KB
testcase_29 AC 196 ms
108,416 KB
testcase_30 AC 200 ms
108,416 KB
testcase_31 AC 200 ms
108,304 KB
testcase_32 AC 197 ms
108,064 KB
testcase_33 AC 484 ms
107,648 KB
testcase_34 AC 453 ms
108,416 KB
testcase_35 AC 482 ms
108,344 KB
testcase_36 AC 470 ms
108,160 KB
testcase_37 AC 480 ms
107,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys
input = sys.stdin.readline

N, M = map(int, input().split())
C = list(map(int, input().split()))
graph = [[] for _ in range(N)]
for i in range(M):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    if C[u] == C[v]:
        graph[u].append(v)
        graph[v].append(u)

ans = 0
Clen = [0 for _ in range(N + 1)]
for i in range(N):
    Clen[C[i]] += 1
isvisited = [False for _ in range(N)]
dq = deque()
for i in range(N):
    if isvisited[i]:
        continue
    isvisited[i] = True
    dq.append(i)
    while len(dq):
        Clen[C[i]] -= 1
        p = dq.popleft()
        for x in graph[p]:
            if isvisited[x]:
                continue
            isvisited[x] = True
            dq.append(x)
    Clen[C[i]] += 1
# print(Clen)
for i in range(1, N + 1):
    ans += max(0, Clen[i] - 1)
print(ans)


0