結果

問題 No.2202 贅沢てりたまチキン
ユーザー tokitsukazetokitsukaze
提出日時 2024-09-14 21:35:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 763 bytes
コンパイル時間 1,664 ms
コンパイル使用メモリ 168,592 KB
実行使用メモリ 6,784 KB
最終ジャッジ日時 2024-09-14 21:35:20
合計ジャッジ時間 4,364 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 5 ms
6,656 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 44 ms
6,656 KB
testcase_15 AC 44 ms
6,656 KB
testcase_16 AC 39 ms
6,528 KB
testcase_17 AC 39 ms
6,784 KB
testcase_18 AC 20 ms
5,376 KB
testcase_19 AC 24 ms
6,656 KB
testcase_20 AC 46 ms
6,784 KB
testcase_21 AC 46 ms
6,528 KB
testcase_22 AC 34 ms
5,376 KB
testcase_23 AC 38 ms
5,376 KB
testcase_24 AC 36 ms
5,376 KB
testcase_25 AC 61 ms
6,656 KB
testcase_26 AC 44 ms
6,656 KB
testcase_27 AC 44 ms
6,784 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