結果

問題 No.2563 色ごとのグループ
ユーザー K5h1n0K5h1n0
提出日時 2023-12-02 16:12:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 660 ms / 2,000 ms
コード長 734 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 130,688 KB
最終ジャッジ日時 2024-09-26 19:57:31
合計ジャッジ時間 11,381 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,504 KB
testcase_01 AC 50 ms
53,504 KB
testcase_02 AC 47 ms
53,632 KB
testcase_03 AC 47 ms
53,632 KB
testcase_04 AC 46 ms
53,248 KB
testcase_05 AC 47 ms
53,504 KB
testcase_06 AC 47 ms
53,632 KB
testcase_07 AC 46 ms
53,760 KB
testcase_08 AC 47 ms
53,632 KB
testcase_09 AC 50 ms
54,784 KB
testcase_10 AC 47 ms
53,760 KB
testcase_11 AC 50 ms
54,656 KB
testcase_12 AC 48 ms
54,272 KB
testcase_13 AC 49 ms
54,016 KB
testcase_14 AC 95 ms
74,624 KB
testcase_15 AC 104 ms
77,184 KB
testcase_16 AC 92 ms
73,984 KB
testcase_17 AC 93 ms
74,112 KB
testcase_18 AC 65 ms
65,664 KB
testcase_19 AC 102 ms
77,184 KB
testcase_20 AC 142 ms
80,896 KB
testcase_21 AC 123 ms
78,080 KB
testcase_22 AC 112 ms
77,312 KB
testcase_23 AC 121 ms
77,568 KB
testcase_24 AC 380 ms
102,144 KB
testcase_25 AC 343 ms
105,600 KB
testcase_26 AC 448 ms
124,800 KB
testcase_27 AC 402 ms
126,080 KB
testcase_28 AC 505 ms
130,688 KB
testcase_29 AC 643 ms
126,592 KB
testcase_30 AC 658 ms
126,848 KB
testcase_31 AC 646 ms
126,592 KB
testcase_32 AC 660 ms
126,720 KB
testcase_33 AC 618 ms
118,024 KB
testcase_34 AC 590 ms
117,628 KB
testcase_35 AC 618 ms
117,484 KB
testcase_36 AC 603 ms
117,856 KB
testcase_37 AC 603 ms
117,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict,deque

n,m = map(int,input().split())
c = list(map(int,input().split()))
cd = defaultdict(int)
for i in list(set(c)):
    cd[i] = 0
c = [0] + c
d = defaultdict(list)
for i in range(m):
    a,b = map(int,input().split())
    d[a].append(b)
    d[b].append(a)

visited = [False]*(n+1)
for i in range(1,n+1):
    if visited[i]:
        continue
    q = deque()
    nowcolor = c[i]
    q.append(i)
    visited[i] = True
    while q:
        nowv = q.popleft()
        for nextv in d[nowv]:
            if c[nextv] == nowcolor and visited[nextv] == False:
                visited[nextv] = True
                q.append(nextv)
    cd[nowcolor] += 1
ans = 0
for i in cd.values():
    ans += i-1
print(ans)
0