結果

問題 No.2563 色ごとのグループ
ユーザー mymelochanmymelochan
提出日時 2023-12-02 14:48:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 464 ms / 2,000 ms
コード長 1,074 bytes
コンパイル時間 548 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 107,776 KB
最終ジャッジ日時 2024-09-26 17:27:37
合計ジャッジ時間 7,592 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,656 KB
testcase_01 AC 48 ms
54,528 KB
testcase_02 AC 48 ms
54,656 KB
testcase_03 AC 49 ms
54,400 KB
testcase_04 AC 50 ms
54,528 KB
testcase_05 AC 48 ms
54,656 KB
testcase_06 AC 49 ms
54,528 KB
testcase_07 AC 48 ms
54,272 KB
testcase_08 AC 49 ms
54,912 KB
testcase_09 AC 51 ms
55,296 KB
testcase_10 AC 49 ms
54,656 KB
testcase_11 AC 50 ms
55,168 KB
testcase_12 AC 51 ms
55,168 KB
testcase_13 AC 50 ms
54,656 KB
testcase_14 AC 72 ms
68,096 KB
testcase_15 AC 72 ms
68,736 KB
testcase_16 AC 71 ms
68,736 KB
testcase_17 AC 71 ms
68,224 KB
testcase_18 AC 64 ms
64,768 KB
testcase_19 AC 77 ms
74,240 KB
testcase_20 AC 88 ms
77,696 KB
testcase_21 AC 83 ms
76,800 KB
testcase_22 AC 83 ms
76,928 KB
testcase_23 AC 89 ms
77,184 KB
testcase_24 AC 155 ms
89,856 KB
testcase_25 AC 141 ms
92,160 KB
testcase_26 AC 173 ms
101,504 KB
testcase_27 AC 162 ms
107,648 KB
testcase_28 AC 182 ms
103,936 KB
testcase_29 AC 221 ms
107,264 KB
testcase_30 AC 218 ms
107,392 KB
testcase_31 AC 218 ms
107,520 KB
testcase_32 AC 218 ms
107,648 KB
testcase_33 AC 464 ms
107,008 KB
testcase_34 AC 461 ms
107,776 KB
testcase_35 AC 458 ms
107,392 KB
testcase_36 AC 458 ms
107,392 KB
testcase_37 AC 463 ms
107,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#############################################################

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations
from math import sin,cos
#from math import isqrt #DO NOT USE PyPy

ipt = sys.stdin.readline
iin = lambda :int(ipt())
lmin = lambda :list(map(int,ipt().split()))

#############################################################

N,M = lmin()
C = lmin()
G = [[] for _ in range(N)]
for _ in range(M):
    u,v = lmin()
    u,v = u-1,v-1
    if C[u] == C[v]:
        G[u].append(v)
        G[v].append(u)

cnt = [0]*(N+1)
visited = [0]*N
for i in range(N):
    if visited[i]:
        continue

    cnt[C[i]] += 1
    visited[i] = 1
    st = [i]
    while st:
        cur = st.pop()
        for nxt in G[cur]:
            if visited[nxt]:
                continue
            visited[nxt] = 1
            st.append(nxt)
    
ans = 0
for i in range(N+1):
    ans += max(0, cnt[i]-1)

print(ans)
0