結果

問題 No.2563 色ごとのグループ
ユーザー かもめのうでかもめのうで
提出日時 2023-12-02 16:03:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 511 bytes
コンパイル時間 482 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 146,200 KB
最終ジャッジ日時 2024-09-26 19:45:06
合計ジャッジ時間 7,937 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 38 ms
51,712 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 40 ms
51,712 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 41 ms
53,120 KB
testcase_10 AC 38 ms
52,224 KB
testcase_11 AC 41 ms
52,608 KB
testcase_12 AC 42 ms
52,480 KB
testcase_13 AC 40 ms
52,224 KB
testcase_14 AC 78 ms
70,656 KB
testcase_15 AC 78 ms
70,656 KB
testcase_16 AC 76 ms
70,656 KB
testcase_17 AC 75 ms
70,528 KB
testcase_18 AC 55 ms
62,080 KB
testcase_19 AC 83 ms
74,368 KB
testcase_20 AC 102 ms
80,256 KB
testcase_21 AC 97 ms
78,208 KB
testcase_22 AC 88 ms
77,440 KB
testcase_23 AC 97 ms
77,696 KB
testcase_24 AC 203 ms
95,360 KB
testcase_25 AC 189 ms
96,640 KB
testcase_26 AC 237 ms
104,964 KB
testcase_27 AC 253 ms
116,172 KB
testcase_28 AC 264 ms
108,188 KB
testcase_29 AC 342 ms
117,712 KB
testcase_30 AC 334 ms
118,216 KB
testcase_31 AC 344 ms
117,968 KB
testcase_32 AC 335 ms
118,468 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
c = list(map(int, input().split()))

cnt = [set() for _ in range(n)]
for i in range(n):
    cnt[c[i]-1].add(i)

s = set()
edge = [0]*n
for _ in range(m):
    v, u = map(int, input().split())
    v -= 1
    u -= 1
    if c[v] == c[u]:
        if (v, u) not in s and (u, v) not in s:
            edge[c[v]-1] += 1
            s.add((v, u))
            s.add((u, v))

ans = 0
for e, t in zip(edge, cnt):
    if len(t) == 0:
        continue
    ans += max(len(t)-1-e, 0)
print(ans)
0