結果

問題 No.2563 色ごとのグループ
ユーザー noriaokinoriaoki
提出日時 2023-12-02 16:00:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 536 ms / 2,000 ms
コード長 640 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 152,132 KB
最終ジャッジ日時 2024-09-26 19:39:57
合計ジャッジ時間 8,519 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,968 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 40 ms
51,584 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 39 ms
51,584 KB
testcase_07 AC 40 ms
51,712 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 42 ms
52,480 KB
testcase_10 AC 40 ms
51,712 KB
testcase_11 AC 42 ms
52,608 KB
testcase_12 AC 41 ms
52,480 KB
testcase_13 AC 40 ms
52,224 KB
testcase_14 AC 76 ms
70,656 KB
testcase_15 AC 79 ms
71,168 KB
testcase_16 AC 80 ms
71,040 KB
testcase_17 AC 80 ms
71,168 KB
testcase_18 AC 53 ms
61,696 KB
testcase_19 AC 88 ms
76,928 KB
testcase_20 AC 92 ms
79,360 KB
testcase_21 AC 92 ms
78,464 KB
testcase_22 AC 94 ms
78,592 KB
testcase_23 AC 97 ms
79,104 KB
testcase_24 AC 245 ms
113,168 KB
testcase_25 AC 191 ms
102,300 KB
testcase_26 AC 252 ms
114,808 KB
testcase_27 AC 211 ms
106,496 KB
testcase_28 AC 274 ms
118,232 KB
testcase_29 AC 346 ms
133,376 KB
testcase_30 AC 339 ms
133,228 KB
testcase_31 AC 349 ms
133,368 KB
testcase_32 AC 340 ms
133,504 KB
testcase_33 AC 502 ms
151,964 KB
testcase_34 AC 536 ms
152,132 KB
testcase_35 AC 511 ms
151,752 KB
testcase_36 AC 512 ms
151,704 KB
testcase_37 AC 513 ms
151,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
C = list(map(int, input().split()))
UV = [map(int, input().split()) for _ in range(M)]

graph = [[] for _ in range(N)]
for U, V in UV:
    U -= 1
    V -= 1
    if C[U] == C[V]:
        graph[U].append(V)
        graph[V].append(U)

ac = [False] * N
col = [False] * N
ans = 0
for i in range(N):
    if ac[i]:
        continue
    if col[C[i]-1]:
        ans += 1
    col[C[i]-1] = True
    q = [i]
    while q:
        now = q.pop()
        if ac[now]:
            continue
        ac[now] = True
        for g in graph[now]:
            if ac[g]:
                continue
            q.append(g)
print(ans)
0