結果

問題 No.2563 色ごとのグループ
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-06 17:48:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 505 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 114,648 KB
最終ジャッジ日時 2024-09-06 17:48:42
合計ジャッジ時間 8,997 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,028 KB
testcase_01 AC 33 ms
52,308 KB
testcase_02 AC 34 ms
53,636 KB
testcase_03 AC 35 ms
52,504 KB
testcase_04 AC 34 ms
53,352 KB
testcase_05 AC 34 ms
52,996 KB
testcase_06 AC 34 ms
53,552 KB
testcase_07 AC 34 ms
53,260 KB
testcase_08 AC 34 ms
52,620 KB
testcase_09 AC 37 ms
54,592 KB
testcase_10 AC 34 ms
53,476 KB
testcase_11 AC 36 ms
54,220 KB
testcase_12 AC 35 ms
52,828 KB
testcase_13 AC 39 ms
53,412 KB
testcase_14 AC 76 ms
74,696 KB
testcase_15 AC 73 ms
77,028 KB
testcase_16 AC 69 ms
74,904 KB
testcase_17 AC 68 ms
74,376 KB
testcase_18 AC 45 ms
64,248 KB
testcase_19 AC 77 ms
77,004 KB
testcase_20 AC 98 ms
78,236 KB
testcase_21 AC 94 ms
77,284 KB
testcase_22 AC 87 ms
77,404 KB
testcase_23 AC 94 ms
77,236 KB
testcase_24 AC 259 ms
90,616 KB
testcase_25 AC 248 ms
91,652 KB
testcase_26 AC 280 ms
101,088 KB
testcase_27 AC 217 ms
112,052 KB
testcase_28 AC 331 ms
104,360 KB
testcase_29 AC 478 ms
111,244 KB
testcase_30 AC 439 ms
111,420 KB
testcase_31 AC 456 ms
111,408 KB
testcase_32 AC 436 ms
111,356 KB
testcase_33 AC 458 ms
114,280 KB
testcase_34 AC 485 ms
114,648 KB
testcase_35 AC 493 ms
114,640 KB
testcase_36 AC 491 ms
113,920 KB
testcase_37 AC 505 ms
114,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
c=list(map(int,input().split()))
e=[[] for i in range(n)]
for i in range(m):
	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