結果

問題 No.2563 色ごとのグループ
ユーザー ID 21712ID 21712
提出日時 2024-11-12 20:54:19
言語 Go
(1.22.1)
結果
AC  
実行時間 444 ms / 2,000 ms
コード長 687 bytes
コンパイル時間 13,412 ms
コンパイル使用メモリ 238,192 KB
実行使用メモリ 28,288 KB
最終ジャッジ日時 2024-11-12 20:54:40
合計ジャッジ時間 21,201 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 4 ms
5,248 KB
testcase_15 AC 5 ms
5,248 KB
testcase_16 AC 4 ms
5,248 KB
testcase_17 AC 4 ms
5,248 KB
testcase_18 AC 3 ms
5,248 KB
testcase_19 AC 10 ms
5,248 KB
testcase_20 AC 25 ms
5,248 KB
testcase_21 AC 15 ms
5,248 KB
testcase_22 AC 13 ms
5,248 KB
testcase_23 AC 23 ms
5,248 KB
testcase_24 AC 242 ms
14,208 KB
testcase_25 AC 198 ms
15,232 KB
testcase_26 AC 314 ms
18,432 KB
testcase_27 AC 217 ms
21,504 KB
testcase_28 AC 302 ms
19,584 KB
testcase_29 AC 418 ms
27,648 KB
testcase_30 AC 444 ms
27,648 KB
testcase_31 AC 437 ms
28,288 KB
testcase_32 AC 429 ms
27,520 KB
testcase_33 AC 419 ms
20,864 KB
testcase_34 AC 405 ms
20,864 KB
testcase_35 AC 403 ms
20,732 KB
testcase_36 AC 433 ms
20,608 KB
testcase_37 AC 399 ms
19,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "os"
import bf "bufio"

func main() {
	rd:=bf.NewReader(Stdin)
	var n,m int
	Fscan(rd,&n,&m)
	cs:=make([]int,n)
	for i:=range cs {
		Fscan(rd,&cs[i])
	}
	t:=make([][]int,n)
	for ;m>0;m-- {
		var u,v int
		Fscan(rd,&u,&v)
		u--
		v--
		t[u]=append(t[u],v)
		t[v]=append(t[v],u)
	}
	visited:=make([]bool,n)
	g:=make(map[int]int)
	for i,c:=range cs {
		if visited[i] {
			continue
		}
		g[c]++
		visited[i]=true
		p:=t[i][:]
		for len(p)>0 {
			e:=p[len(p)-1]
			p=p[:len(p)-1]
			if cs[e]!=c||visited[e] {
				continue
			}
			visited[e]=true
			p=append(p,t[e]...)
		}
	}
	var ans int
	for _,c:=range g {
		if c>0 {
			ans+=c-1
		}
	}
	Println(ans)
}
0