結果

問題 No.2563 色ごとのグループ
ユーザー viral8viral8
提出日時 2023-12-02 15:03:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 742 ms / 2,000 ms
コード長 2,114 bytes
コンパイル時間 2,488 ms
コンパイル使用メモリ 78,816 KB
実行使用メモリ 67,868 KB
最終ジャッジ日時 2024-09-26 17:58:45
合計ジャッジ時間 14,373 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
37,376 KB
testcase_01 AC 51 ms
36,880 KB
testcase_02 AC 49 ms
37,376 KB
testcase_03 AC 49 ms
37,244 KB
testcase_04 AC 48 ms
37,384 KB
testcase_05 AC 50 ms
36,672 KB
testcase_06 AC 51 ms
37,156 KB
testcase_07 AC 50 ms
36,960 KB
testcase_08 AC 51 ms
37,140 KB
testcase_09 AC 55 ms
36,992 KB
testcase_10 AC 52 ms
36,656 KB
testcase_11 AC 52 ms
37,140 KB
testcase_12 AC 53 ms
36,744 KB
testcase_13 AC 52 ms
37,248 KB
testcase_14 AC 89 ms
39,168 KB
testcase_15 AC 101 ms
39,804 KB
testcase_16 AC 110 ms
39,740 KB
testcase_17 AC 108 ms
40,096 KB
testcase_18 AC 73 ms
38,348 KB
testcase_19 AC 129 ms
41,464 KB
testcase_20 AC 167 ms
44,388 KB
testcase_21 AC 144 ms
43,672 KB
testcase_22 AC 140 ms
42,560 KB
testcase_23 AC 154 ms
43,952 KB
testcase_24 AC 460 ms
54,064 KB
testcase_25 AC 401 ms
55,604 KB
testcase_26 AC 531 ms
62,720 KB
testcase_27 AC 511 ms
67,068 KB
testcase_28 AC 543 ms
60,592 KB
testcase_29 AC 650 ms
66,896 KB
testcase_30 AC 684 ms
67,660 KB
testcase_31 AC 728 ms
67,608 KB
testcase_32 AC 742 ms
67,868 KB
testcase_33 AC 657 ms
67,132 KB
testcase_34 AC 645 ms
66,696 KB
testcase_35 AC 655 ms
66,332 KB
testcase_36 AC 645 ms
66,560 KB
testcase_37 AC 613 ms
67,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
class Main{
	private static final BufferedReader br =
		new BufferedReader(new InputStreamReader(System.in));
	private static final PrintWriter out =
		new PrintWriter(System.out);
	public static void main(String[] args)throws IOException{

		String[] str = br.readLine().split(" ");
		int N = Integer.parseInt(str[0]);
		int M = Integer.parseInt(str[1]);
		int[] C = new int[N];
		str = br.readLine().split(" ");
		for(int i=0;i<N;i++)
			C[i] = Integer.parseInt(str[i]);
		HashMap<Integer,int[]> map = new HashMap<>();
		for(int i=0;i<N;i++){
			if(map.containsKey(C[i]))
				map.get(C[i])[1]++;
			else
				map.put(C[i],new int[]{0,1});
		}
		UnionFind uf = new UnionFind(N+1);
		while(M-->0){
			str = br.readLine().split(" ");
			int u = Integer.parseInt(str[0]);
			int v = Integer.parseInt(str[1]);
			if(C[u-1]==C[v-1])
				if(uf.unite(u,v))
					map.get(C[u-1])[0]++;
		}
		int ans = 0;
		for(int[] temp:map.values())
			ans += temp[1]-temp[0]-1;
		out.println(ans);

		br.close();
		out.close();
	}
}
final class UnionFind {
	private final int[] par, rank, size, path;
	private int count;

	public UnionFind ( final int N ) {
		count = N;
		par = new int[N];
		rank = new int[N];
		size = new int[N];
		path = new int[N];
		Arrays.fill( par, -1 );
		Arrays.fill( size, 1 );
	}

	public int root ( final int ind ) {
		if ( par[ind] == -1 ) {
			return ind;
		}
		else {
			return par[ind] = root( par[ind] );
		}
	}

	public boolean isSame ( final int x, final int y ) {
		return root( x ) == root( y );
	}

	public boolean unite ( final int x, final int y ) {
		int rx = root( x );
		int ry = root( y );
		++path[rx];
		if ( rx == ry ) {
			return false;
		}
		if ( rank[rx] < rank[ry] ) {
			int temp = rx;
			rx = ry;
			ry = temp;
		}
		par[ry] = rx;
		if ( rank[rx] == rank[ry] ) {
			++rank[rx];
		}
		path[rx] += path[ry];
		size[rx] += size[ry];
		--count;
		return true;
	}

	public int groupCount () {
		return count;
	}

	public int pathCount ( final int x ) {
		return path[root( x )];
	}

	public int size ( final int x ) {
		return size[root( x )];
	}
}
0