結果

問題 No.2563 色ごとのグループ
ユーザー あ
提出日時 2023-12-13 23:51:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,009 ms / 2,000 ms
コード長 712 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 184,976 KB
最終ジャッジ日時 2024-09-27 05:34:07
合計ジャッジ時間 9,684 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,980 KB
testcase_01 AC 35 ms
52,796 KB
testcase_02 AC 36 ms
53,360 KB
testcase_03 AC 35 ms
52,128 KB
testcase_04 AC 36 ms
52,832 KB
testcase_05 AC 35 ms
52,820 KB
testcase_06 AC 35 ms
53,576 KB
testcase_07 AC 35 ms
52,432 KB
testcase_08 AC 36 ms
52,612 KB
testcase_09 AC 37 ms
53,492 KB
testcase_10 AC 36 ms
52,688 KB
testcase_11 AC 38 ms
53,628 KB
testcase_12 AC 37 ms
53,108 KB
testcase_13 AC 38 ms
52,800 KB
testcase_14 AC 67 ms
71,976 KB
testcase_15 AC 67 ms
73,700 KB
testcase_16 AC 66 ms
73,780 KB
testcase_17 AC 65 ms
73,948 KB
testcase_18 AC 46 ms
63,404 KB
testcase_19 AC 73 ms
76,692 KB
testcase_20 AC 83 ms
77,348 KB
testcase_21 AC 77 ms
77,336 KB
testcase_22 AC 75 ms
76,704 KB
testcase_23 AC 87 ms
77,112 KB
testcase_24 AC 211 ms
90,212 KB
testcase_25 AC 182 ms
92,364 KB
testcase_26 AC 224 ms
102,380 KB
testcase_27 AC 190 ms
106,128 KB
testcase_28 AC 266 ms
104,748 KB
testcase_29 AC 326 ms
107,488 KB
testcase_30 AC 324 ms
107,212 KB
testcase_31 AC 326 ms
107,216 KB
testcase_32 AC 312 ms
107,092 KB
testcase_33 AC 975 ms
184,976 KB
testcase_34 AC 755 ms
159,732 KB
testcase_35 AC 794 ms
158,688 KB
testcase_36 AC 1,009 ms
183,512 KB
testcase_37 AC 737 ms
161,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')

import sys
sys.setrecursionlimit(10 ** 8)

def dfs(now, g, visited):
    visited[now] = True
    for nex in g[now]:
        if visited[nex]:
            continue
        dfs(nex, g, visited)

n, m = map(int, input().split())
g = [[] for _ in range(n)]
c = list(map(int, input().split()))
for _ in range(m):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    if c[u] == c[v]:
        g[u].append(v)
        g[v].append(u)

com = [0] * n
visited = [False] * n
for i in range(n):
    if not visited[i]:
        dfs(i, g, visited)
        com[c[i] - 1] += 1

ans = 0
for i in range(n):
    if com[i] != 0:
        ans += com[i] - 1

print(ans)
0