結果

問題 No.2418 情報通だよ!Nafmoくん
ユーザー rinrionrinrion
提出日時 2023-08-12 14:39:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,226 bytes
コンパイル時間 3,824 ms
コンパイル使用メモリ 229,176 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-19 20:40:35
合計ジャッジ時間 5,505 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 39 ms
5,248 KB
testcase_16 WA -
testcase_17 AC 20 ms
5,248 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 43 ms
5,248 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>	
using namespace std;
using namespace atcoder;

// 宣言 unionfind 変数名(頂点数) 各関数を利用 変数名.unite(x, y)
struct unionfind{
	//par=親 siz=グループの頂点数
	vector<int>par, siz;

	unionfind(int n) : par(n, -1),siz(n, 1){}

	//根を求める
	int root(int x){
		if(par[x] == -1) return x;
		else return par[x] = root(par[x]);
	}

	//xとyが同グループか(根が同じか)
	bool issame(int x, int y){
		return root(x) == root(y);
	}

	//xを含むグループとyを含むグループを併合する
	bool unite(int x, int y){
		x=root(x), y=root(y);
		if(x == y)return false;
		//y側のサイズが小さくなるようにする
		if(siz[x] < siz[y]) swap(x, y);

		//yをxの子とする
		par[y] = x;
		siz[x] += siz[y];
		return true;
	}

	int size(int x){
		return siz[root(x)];
	}
};

	int roundup(int x, int y){
		return (x + y - 1) / y;
	}

int main(){
	
	int n, m;
	cin >> n >> m;

	unionfind uni(n * 2);
	
	for(int i = 0; i < m; ++i){
		int a, b;
		cin >> a >> b;
		a--;
		b--;

		uni.unite(a, b);
	}

	int res = 0;

	for(int i = 0; i < n * 2; ++i){
		if(uni.size(i) == 1){
			res ++;
		}
	}
	
	cout << roundup(res, 2) << endl;
	
}
0