結果

問題 No.2563 色ごとのグループ
ユーザー あ
提出日時 2023-12-13 23:50:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,395 ms / 2,000 ms
コード長 651 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 65,820 KB
最終ジャッジ日時 2024-09-27 05:33:56
合計ジャッジ時間 16,800 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 28 ms
10,624 KB
testcase_11 AC 28 ms
10,624 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 28 ms
10,624 KB
testcase_14 AC 34 ms
11,008 KB
testcase_15 AC 35 ms
10,880 KB
testcase_16 AC 35 ms
10,880 KB
testcase_17 AC 32 ms
10,752 KB
testcase_18 AC 29 ms
10,880 KB
testcase_19 AC 52 ms
10,880 KB
testcase_20 AC 83 ms
13,824 KB
testcase_21 AC 64 ms
12,032 KB
testcase_22 AC 61 ms
11,392 KB
testcase_23 AC 91 ms
11,904 KB
testcase_24 AC 596 ms
23,748 KB
testcase_25 AC 480 ms
25,956 KB
testcase_26 AC 651 ms
34,292 KB
testcase_27 AC 493 ms
43,048 KB
testcase_28 AC 742 ms
37,144 KB
testcase_29 AC 1,004 ms
46,396 KB
testcase_30 AC 973 ms
46,152 KB
testcase_31 AC 968 ms
46,148 KB
testcase_32 AC 983 ms
46,144 KB
testcase_33 AC 1,395 ms
65,820 KB
testcase_34 AC 1,382 ms
64,412 KB
testcase_35 AC 1,345 ms
64,524 KB
testcase_36 AC 1,288 ms
65,700 KB
testcase_37 AC 1,367 ms
65,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 6)

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