結果

問題 No.2563 色ごとのグループ
ユーザー u_kunu_kun
提出日時 2023-12-02 16:13:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 520 ms / 2,000 ms
コード長 861 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 131,080 KB
最終ジャッジ日時 2024-09-26 19:59:27
合計ジャッジ時間 8,965 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,592 KB
testcase_01 AC 41 ms
54,848 KB
testcase_02 AC 39 ms
54,676 KB
testcase_03 AC 37 ms
54,640 KB
testcase_04 AC 38 ms
55,048 KB
testcase_05 AC 38 ms
54,444 KB
testcase_06 AC 36 ms
53,864 KB
testcase_07 AC 37 ms
55,116 KB
testcase_08 AC 38 ms
54,976 KB
testcase_09 AC 38 ms
55,148 KB
testcase_10 AC 37 ms
54,268 KB
testcase_11 AC 39 ms
54,728 KB
testcase_12 AC 39 ms
54,300 KB
testcase_13 AC 39 ms
54,500 KB
testcase_14 AC 78 ms
77,488 KB
testcase_15 AC 77 ms
77,180 KB
testcase_16 AC 78 ms
76,796 KB
testcase_17 AC 76 ms
76,812 KB
testcase_18 AC 50 ms
66,084 KB
testcase_19 AC 77 ms
77,052 KB
testcase_20 AC 104 ms
80,312 KB
testcase_21 AC 99 ms
78,244 KB
testcase_22 AC 88 ms
77,404 KB
testcase_23 AC 93 ms
77,604 KB
testcase_24 AC 275 ms
97,768 KB
testcase_25 AC 236 ms
96,832 KB
testcase_26 AC 318 ms
104,192 KB
testcase_27 AC 269 ms
110,924 KB
testcase_28 AC 343 ms
109,940 KB
testcase_29 AC 447 ms
120,564 KB
testcase_30 AC 476 ms
118,972 KB
testcase_31 AC 440 ms
120,272 KB
testcase_32 AC 465 ms
120,272 KB
testcase_33 AC 491 ms
125,880 KB
testcase_34 AC 468 ms
131,080 KB
testcase_35 AC 502 ms
128,360 KB
testcase_36 AC 508 ms
128,432 KB
testcase_37 AC 520 ms
128,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

#色iの連結成分の個数はcnt[i]個
cnt = [0 for _ in range(N + 1)]

G = [[] for _ in range(N + 1)]

for _ in range(M):
    a, b = map(int, input().split())
    G[a].append(b)
    G[b].append(a)

vis = set()

for s_id in range(1, N + 1):
    if s_id in vis:
        continue
    
    vis.add(s_id)
    FIFO = deque()
    FIFO.append(s_id)
    
    color = C[s_id - 1]
    
    cnt[color] += 1
    
    while FIFO:
        now_vid = FIFO.popleft()
        
        for ne_vid in G[now_vid]:
            if ne_vid not in vis and C[now_vid - 1] == C[ne_vid - 1]:
                vis.add(ne_vid)
                FIFO.append(ne_vid)
                
        
ans = 0
for i in range(len(cnt)):
    if cnt[i] >= 2:
        ans += cnt[i] - 1

print(ans)








0