結果

問題 No.2202 贅沢てりたまチキン
ユーザー vjudge1vjudge1
提出日時 2024-09-14 21:37:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 763 bytes
コンパイル時間 1,616 ms
コンパイル使用メモリ 170,348 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-14 21:37:22
合計ジャッジ時間 3,478 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 44 ms
6,940 KB
testcase_15 AC 43 ms
6,940 KB
testcase_16 AC 38 ms
6,940 KB
testcase_17 AC 39 ms
6,940 KB
testcase_18 AC 20 ms
6,940 KB
testcase_19 AC 24 ms
6,944 KB
testcase_20 AC 45 ms
6,940 KB
testcase_21 AC 45 ms
6,940 KB
testcase_22 AC 35 ms
6,944 KB
testcase_23 AC 37 ms
6,944 KB
testcase_24 AC 36 ms
6,940 KB
testcase_25 AC 60 ms
6,940 KB
testcase_26 AC 43 ms
6,940 KB
testcase_27 AC 43 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int MAX=4e5+10;
struct Disjoint_Set_Union
{
	int pre[MAX],sz[MAX];
	void init(int n)
	{
		int i;
		for(i=1;i<=n;i++)
		{
			pre[i]=i;
			sz[i]=1;
		}
	}
	int find(int x)
	{
		if(pre[x]!=x) pre[x]=find(pre[x]);
		return pre[x];
	}
	bool merge(int x,int y,bool dir=false)
	{
		x=find(x);
		y=find(y);
		if(x==y) return 0;
		if(!dir && sz[x]>sz[y]) swap(x,y);
		pre[x]=y; // x -> y
		sz[y]+=sz[x];
		return 1;
	}
}dsu;
int main()
{
	int n,m,i,a,b,ok;
	scanf("%d%d",&n,&m);
	dsu.init(2*n);
	while(m--)
	{
		scanf("%d%d",&a,&b);
		dsu.merge(a,b+n);
		dsu.merge(a+n,b);
	}
	ok=1;
	for(i=1;i<=n;i++)
	{
		if(dsu.find(i)!=dsu.find(i+n)) ok=0;
	}
	if(ok) puts("Yes");
	else puts("No");
	return 0;
}
0