結果

問題 No.2563 色ごとのグループ
ユーザー titiatitia
提出日時 2023-12-12 03:05:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 501 ms / 2,000 ms
コード長 878 bytes
コンパイル時間 473 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 120,868 KB
最終ジャッジ日時 2024-09-27 04:45:58
合計ジャッジ時間 10,270 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
104,320 KB
testcase_01 AC 113 ms
104,192 KB
testcase_02 AC 114 ms
104,192 KB
testcase_03 AC 115 ms
104,320 KB
testcase_04 AC 114 ms
104,320 KB
testcase_05 AC 115 ms
104,192 KB
testcase_06 AC 115 ms
104,448 KB
testcase_07 AC 116 ms
104,320 KB
testcase_08 AC 116 ms
104,320 KB
testcase_09 AC 115 ms
103,424 KB
testcase_10 AC 115 ms
104,064 KB
testcase_11 AC 115 ms
103,808 KB
testcase_12 AC 116 ms
103,936 KB
testcase_13 AC 116 ms
103,680 KB
testcase_14 AC 126 ms
92,160 KB
testcase_15 AC 126 ms
91,520 KB
testcase_16 AC 121 ms
91,648 KB
testcase_17 AC 121 ms
91,776 KB
testcase_18 AC 127 ms
103,552 KB
testcase_19 AC 157 ms
115,072 KB
testcase_20 AC 170 ms
111,232 KB
testcase_21 AC 164 ms
114,816 KB
testcase_22 AC 166 ms
115,584 KB
testcase_23 AC 162 ms
107,392 KB
testcase_24 AC 247 ms
112,548 KB
testcase_25 AC 241 ms
117,816 KB
testcase_26 AC 280 ms
120,180 KB
testcase_27 AC 264 ms
119,988 KB
testcase_28 AC 275 ms
104,736 KB
testcase_29 AC 351 ms
120,236 KB
testcase_30 AC 338 ms
120,360 KB
testcase_31 AC 342 ms
120,612 KB
testcase_32 AC 341 ms
120,092 KB
testcase_33 AC 495 ms
120,496 KB
testcase_34 AC 501 ms
120,760 KB
testcase_35 AC 494 ms
120,752 KB
testcase_36 AC 492 ms
120,236 KB
testcase_37 AC 498 ms
120,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

# UnionFind

Group = [i for i in range(N)] # グループ分け
Nodes = [1]*(N) # 各グループのノードの数

def find(x):
    while Group[x] != x:
        x=Group[x]
    return x

def Union(x,y):
    if find(x) != find(y):
        if Nodes[find(x)] < Nodes[find(y)]:
            
            Nodes[find(y)] += Nodes[find(x)]
            Nodes[find(x)] = 0
            Group[find(x)] = find(y)
            
        else:
            Nodes[find(x)] += Nodes[find(y)]
            Nodes[find(y)] = 0
            Group[find(y)] = find(x)

for i in range(M):
    x,y=map(int,input().split())
    if C[x-1]==C[y-1]:
        Union(x-1,y-1)


LIST=[[] for i in range(10**6)]

for i in range(N):
    if find(i)==i:
        LIST[C[i]].append(i)
ANS=0
for i in range(10**6):
    ANS+=max(0,len(LIST[i])-1)

print(ANS)

0