結果

問題 No.2563 色ごとのグループ
ユーザー ああいいああいい
提出日時 2023-12-02 19:48:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 409 ms / 2,000 ms
コード長 554 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 125,440 KB
最終ジャッジ日時 2024-09-26 21:33:10
合計ジャッジ時間 6,942 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 47 ms
51,584 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 38 ms
51,584 KB
testcase_06 AC 38 ms
51,712 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 39 ms
51,712 KB
testcase_09 AC 43 ms
52,864 KB
testcase_10 AC 39 ms
51,968 KB
testcase_11 AC 43 ms
52,864 KB
testcase_12 AC 40 ms
51,968 KB
testcase_13 AC 42 ms
52,352 KB
testcase_14 AC 70 ms
68,224 KB
testcase_15 AC 70 ms
68,736 KB
testcase_16 AC 70 ms
68,736 KB
testcase_17 AC 69 ms
68,608 KB
testcase_18 AC 44 ms
59,008 KB
testcase_19 AC 75 ms
72,704 KB
testcase_20 AC 102 ms
76,928 KB
testcase_21 AC 85 ms
76,544 KB
testcase_22 AC 103 ms
76,544 KB
testcase_23 AC 85 ms
76,288 KB
testcase_24 AC 182 ms
94,720 KB
testcase_25 AC 148 ms
97,536 KB
testcase_26 AC 198 ms
110,976 KB
testcase_27 AC 179 ms
124,544 KB
testcase_28 AC 212 ms
114,432 KB
testcase_29 AC 234 ms
124,928 KB
testcase_30 AC 252 ms
125,056 KB
testcase_31 AC 249 ms
125,440 KB
testcase_32 AC 256 ms
125,312 KB
testcase_33 AC 409 ms
107,264 KB
testcase_34 AC 395 ms
106,752 KB
testcase_35 AC 388 ms
106,624 KB
testcase_36 AC 365 ms
107,392 KB
testcase_37 AC 377 ms
107,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 8)


N,M = map(int,input().split())
C = list(map(int,input().split()))

parent = list(range(N))
def find(i):
    if parent[i] == i:return i
    parent[i] = find(parent[i])
    return parent[i]
def unite(i,j):
    I = find(i)
    J = find(j)
    if I == J:return False
    parent[i] = J
    parent[I] = J
    return True

col = set(C)
count = 0
for _ in range(M):
    u,v = map(int,input().split())
    u -= 1
    v -= 1
    if C[u] != C[v]:continue
    if unite(u,v):
        count += 1
print(N - len(col) - count)
0