結果

問題 No.2563 色ごとのグループ
ユーザー KoiKoi
提出日時 2023-12-02 15:37:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 526 ms / 2,000 ms
コード長 585 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 123,120 KB
最終ジャッジ日時 2024-09-26 19:01:17
合計ジャッジ時間 8,070 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,632 KB
testcase_01 AC 39 ms
54,144 KB
testcase_02 AC 39 ms
53,760 KB
testcase_03 AC 39 ms
53,504 KB
testcase_04 AC 38 ms
53,376 KB
testcase_05 AC 39 ms
53,376 KB
testcase_06 AC 39 ms
53,864 KB
testcase_07 AC 41 ms
53,376 KB
testcase_08 AC 41 ms
53,504 KB
testcase_09 AC 42 ms
54,400 KB
testcase_10 AC 39 ms
53,888 KB
testcase_11 AC 44 ms
54,528 KB
testcase_12 AC 42 ms
54,144 KB
testcase_13 AC 41 ms
53,760 KB
testcase_14 AC 71 ms
74,152 KB
testcase_15 AC 70 ms
74,368 KB
testcase_16 AC 70 ms
74,368 KB
testcase_17 AC 80 ms
74,112 KB
testcase_18 AC 51 ms
65,792 KB
testcase_19 AC 78 ms
76,800 KB
testcase_20 AC 90 ms
79,016 KB
testcase_21 AC 81 ms
77,100 KB
testcase_22 AC 80 ms
76,800 KB
testcase_23 AC 85 ms
77,028 KB
testcase_24 AC 187 ms
92,608 KB
testcase_25 AC 174 ms
93,676 KB
testcase_26 AC 224 ms
107,100 KB
testcase_27 AC 227 ms
123,096 KB
testcase_28 AC 250 ms
109,832 KB
testcase_29 AC 313 ms
122,628 KB
testcase_30 AC 303 ms
123,120 KB
testcase_31 AC 315 ms
122,580 KB
testcase_32 AC 302 ms
123,024 KB
testcase_33 AC 526 ms
117,924 KB
testcase_34 AC 513 ms
117,748 KB
testcase_35 AC 507 ms
117,740 KB
testcase_36 AC 500 ms
117,876 KB
testcase_37 AC 508 ms
117,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict,deque
N,M=map(int,input().split())
C=list(map(int,input().split()))
G=defaultdict(list)
for i in range(M):
    u,v=map(int,input().split())
    if(C[u-1]==C[v-1]):
        G[u].append(v)
        G[v].append(u)
#連結成分の個数-色の種類数
T=1
c=0
seen=[False]*(N+1)
while T<=N:
    que=deque([T])
    seen[T]=True
    while len(que):
        p=que.popleft()
        for q in G[p]:
            if(not seen[q]):
                seen[q]=True
                que.append(q)
    while T<=N and seen[T]:
        T+=1
    c+=1
print(c-len(set(C)))
0