結果

問題 No.2563 色ごとのグループ
ユーザー LucagonLucagon
提出日時 2023-12-02 15:53:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,888 ms / 2,000 ms
コード長 614 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 334,060 KB
最終ジャッジ日時 2024-09-26 19:29:33
合計ジャッジ時間 13,517 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,632 KB
testcase_01 AC 48 ms
53,632 KB
testcase_02 AC 49 ms
53,632 KB
testcase_03 AC 48 ms
53,376 KB
testcase_04 AC 48 ms
53,376 KB
testcase_05 AC 50 ms
53,504 KB
testcase_06 AC 48 ms
53,504 KB
testcase_07 AC 47 ms
53,632 KB
testcase_08 AC 48 ms
53,760 KB
testcase_09 AC 50 ms
54,272 KB
testcase_10 AC 48 ms
53,888 KB
testcase_11 AC 50 ms
54,272 KB
testcase_12 AC 49 ms
54,144 KB
testcase_13 AC 49 ms
54,400 KB
testcase_14 AC 88 ms
71,936 KB
testcase_15 AC 88 ms
72,704 KB
testcase_16 AC 94 ms
72,064 KB
testcase_17 AC 88 ms
72,320 KB
testcase_18 AC 64 ms
64,256 KB
testcase_19 AC 102 ms
76,928 KB
testcase_20 AC 108 ms
79,488 KB
testcase_21 AC 103 ms
77,312 KB
testcase_22 AC 106 ms
76,928 KB
testcase_23 AC 108 ms
77,440 KB
testcase_24 AC 217 ms
99,328 KB
testcase_25 AC 199 ms
102,272 KB
testcase_26 AC 248 ms
117,504 KB
testcase_27 AC 249 ms
135,032 KB
testcase_28 AC 270 ms
121,740 KB
testcase_29 AC 334 ms
135,836 KB
testcase_30 AC 329 ms
135,816 KB
testcase_31 AC 339 ms
135,708 KB
testcase_32 AC 338 ms
135,836 KB
testcase_33 AC 874 ms
162,044 KB
testcase_34 AC 1,841 ms
334,060 KB
testcase_35 AC 1,262 ms
210,468 KB
testcase_36 AC 1,888 ms
331,996 KB
testcase_37 AC 959 ms
204,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import setrecursionlimit
from collections import defaultdict
setrecursionlimit(10**9)

def dfs(pos):
    if pos in visited: return
    visited.add(pos)

    for i in g[pos]:
        dfs(i)

n,m = map(int,input().split())
c = list(map(int,input().split()))
d = defaultdict(int)

g = [[] for _ in range(n)]
for i in range(m):
    a,b = map(int,input().split())
    a -= 1
    b -= 1
    if c[a] == c[b]:
        g[a].append(b)
        g[b].append(a)

visited = set()
for i in range(n):
    if i not in visited:
        dfs(i)
        d[c[i]] += 1

ans = 0
for i in d.values():
    ans += (i - 1)

print(ans)
0