結果

問題 No.2563 色ごとのグループ
ユーザー mymelochanmymelochan
提出日時 2023-12-02 14:47:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,072 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 108,032 KB
最終ジャッジ日時 2024-09-26 17:24:06
合計ジャッジ時間 6,510 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,144 KB
testcase_01 AC 44 ms
54,528 KB
testcase_02 AC 41 ms
54,144 KB
testcase_03 AC 42 ms
54,144 KB
testcase_04 AC 42 ms
54,528 KB
testcase_05 AC 42 ms
54,400 KB
testcase_06 AC 41 ms
54,528 KB
testcase_07 AC 42 ms
54,400 KB
testcase_08 WA -
testcase_09 AC 44 ms
54,912 KB
testcase_10 AC 45 ms
54,564 KB
testcase_11 AC 45 ms
55,424 KB
testcase_12 AC 43 ms
55,040 KB
testcase_13 AC 44 ms
54,784 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 59 ms
69,120 KB
testcase_17 WA -
testcase_18 AC 54 ms
64,896 KB
testcase_19 AC 62 ms
74,708 KB
testcase_20 AC 74 ms
77,824 KB
testcase_21 WA -
testcase_22 AC 68 ms
76,928 KB
testcase_23 AC 73 ms
77,056 KB
testcase_24 AC 129 ms
89,856 KB
testcase_25 AC 121 ms
92,348 KB
testcase_26 AC 146 ms
102,016 KB
testcase_27 AC 140 ms
108,032 KB
testcase_28 AC 157 ms
103,936 KB
testcase_29 AC 177 ms
107,648 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 196 ms
107,264 KB
testcase_33 AC 395 ms
107,008 KB
testcase_34 AC 395 ms
107,904 KB
testcase_35 AC 407 ms
107,812 KB
testcase_36 AC 419 ms
107,012 KB
testcase_37 AC 412 ms
107,072 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):
    ans += max(0, cnt[i]-1)

print(ans)
0