結果

問題 No.2563 色ごとのグループ
ユーザー ちーぴんちーぴん
提出日時 2023-12-02 15:26:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 590 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 113,408 KB
最終ジャッジ日時 2024-09-26 18:41:47
合計ジャッジ時間 7,170 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 44 ms
51,712 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 40 ms
51,584 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 41 ms
52,352 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 43 ms
52,352 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 43 ms
52,608 KB
testcase_12 AC 43 ms
52,096 KB
testcase_13 AC 42 ms
52,224 KB
testcase_14 AC 79 ms
69,632 KB
testcase_15 AC 79 ms
70,016 KB
testcase_16 AC 79 ms
70,144 KB
testcase_17 AC 79 ms
69,632 KB
testcase_18 AC 56 ms
61,568 KB
testcase_19 AC 85 ms
73,856 KB
testcase_20 AC 102 ms
77,440 KB
testcase_21 AC 95 ms
76,672 KB
testcase_22 AC 95 ms
76,416 KB
testcase_23 AC 100 ms
76,672 KB
testcase_24 AC 188 ms
89,984 KB
testcase_25 AC 165 ms
92,416 KB
testcase_26 AC 203 ms
102,144 KB
testcase_27 AC 182 ms
112,512 KB
testcase_28 AC 217 ms
105,856 KB
testcase_29 AC 257 ms
112,384 KB
testcase_30 AC 267 ms
112,128 KB
testcase_31 AC 265 ms
111,872 KB
testcase_32 AC 260 ms
112,000 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

"""
考察
色違いの場合、辺はないと考えて良さそう
色ごとのグループ数 - 1 の和が答え

色ごとの頂点数を数えておく
辺を結ぶたびに、その色の頂点数を1減らす
"""

N, M = map(int, input().split())
C = list(map(lambda x:int(x)-1, input().split()))

cnt = [0] * N
for c in C:
    cnt[c] += 1

G = [[] for _ in range(N)]
for _ 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)
        cnt[C[a]] -= 1
ans = sum(c - 1 for c in cnt if c > 0)
print(ans)
0