結果

問題 No.2563 色ごとのグループ
ユーザー highlighterhighlighter
提出日時 2023-12-02 14:50:58
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 1,000 bytes
コンパイル時間 3,335 ms
コンパイル使用メモリ 252,188 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-09-26 17:32:08
合計ジャッジ時間 7,316 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 5 ms
5,376 KB
testcase_20 AC 15 ms
5,376 KB
testcase_21 AC 10 ms
5,376 KB
testcase_22 AC 8 ms
5,376 KB
testcase_23 AC 13 ms
5,376 KB
testcase_24 AC 125 ms
6,784 KB
testcase_25 AC 108 ms
7,424 KB
testcase_26 AC 159 ms
9,344 KB
testcase_27 AC 165 ms
11,648 KB
testcase_28 AC 184 ms
9,984 KB
testcase_29 AC 257 ms
12,288 KB
testcase_30 AC 253 ms
12,288 KB
testcase_31 AC 254 ms
12,288 KB
testcase_32 AC 258 ms
12,416 KB
testcase_33 AC 204 ms
6,400 KB
testcase_34 AC 200 ms
6,400 KB
testcase_35 AC 196 ms
6,528 KB
testcase_36 AC 204 ms
6,528 KB
testcase_37 AC 202 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long

struct UnionFind{
    vector<int> par;
    UnionFind(int N) : par(N) {
        for(int i=0;i<N;i++){
            par[i]=i;
        }
    }
    int root(int x){
        if(par[x]==x){
            return x;
        }
        return par[x]=root(par[x]);
    }
    void unite(int x,int y){
        int rx=root(x);
        int ry=root(y);
        if(rx==ry){
            return;
        }
        par[rx]=ry;
    }
    bool same(int x,int y){
        int rx=root(x);
        int ry=root(y);
        return rx==ry;
    }
};

signed main(){
	int N,M;
	cin >> N >> M;
	vector<int> C(N);
	set<int> data;
	for(int i=0;i<N;i++){
		cin >> C[i];
		data.insert(C[i]);
	}
	//違う色を結んだ辺に興味はない
	UnionFind tree(N);
	int count=0;
	for(;M--;){
		int u,v;
		cin >> u >> v;
		u--;
		v--;
		if(C[u]==C[v]){
			if(!tree.same(u,v)){
				count++;
			}
			tree.unite(u,v);
		}
	}
	int siz=data.size();
	cout << N-siz-count << endl;
}
0