結果

問題 No.2563 色ごとのグループ
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-06 17:46:56
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 376 bytes
コンパイル時間 504 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 111,764 KB
最終ジャッジ日時 2024-09-06 17:47:07
合計ジャッジ時間 10,119 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,300 KB
testcase_01 RE -
testcase_02 AC 35 ms
53,144 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 WA -
testcase_14 RE -
testcase_15 AC 71 ms
73,952 KB
testcase_16 AC 70 ms
74,776 KB
testcase_17 AC 69 ms
74,356 KB
testcase_18 RE -
testcase_19 WA -
testcase_20 RE -
testcase_21 AC 92 ms
77,216 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 212 ms
89,808 KB
testcase_25 AC 217 ms
91,640 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 350 ms
104,436 KB
testcase_29 RE -
testcase_30 AC 422 ms
111,480 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
c=list(map(int,input().split()))
e=[[] for i in range(n)]
for i in range(n):
	u,v=map(int,input().split())
	u-=1
	v-=1
	e[u]+=[v]
	e[v]+=[u]
p=[0]*n
v=[0]*n
for i in range(n):
	if v[i]==0:
		s=i
		g=c[s]
		p[g-1]+=1
		v[s]=1
		q=[s]
		for s in q:
			for t in e[s]:
				if v[t]==0 and c[t]==g:
					v[t]=1
					q+=[t]
print(sum(v-(v>0) for v in p))
0