結果

問題 No.2290 UnUnion Find
ユーザー kotatsugamekotatsugame
提出日時 2023-05-05 21:24:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 936 ms
コンパイル使用メモリ 86,884 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-05-02 15:03:43
合計ジャッジ時間 10,869 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 36 ms
5,376 KB
testcase_03 AC 111 ms
8,320 KB
testcase_04 AC 112 ms
8,320 KB
testcase_05 AC 111 ms
8,320 KB
testcase_06 AC 109 ms
8,320 KB
testcase_07 AC 112 ms
8,192 KB
testcase_08 AC 107 ms
8,320 KB
testcase_09 AC 118 ms
8,320 KB
testcase_10 AC 111 ms
8,192 KB
testcase_11 AC 116 ms
8,320 KB
testcase_12 AC 114 ms
8,320 KB
testcase_13 AC 111 ms
8,192 KB
testcase_14 AC 114 ms
8,192 KB
testcase_15 AC 104 ms
8,192 KB
testcase_16 AC 106 ms
8,320 KB
testcase_17 AC 112 ms
8,320 KB
testcase_18 AC 112 ms
8,320 KB
testcase_19 AC 140 ms
9,088 KB
testcase_20 AC 196 ms
13,440 KB
testcase_21 AC 44 ms
5,376 KB
testcase_22 AC 79 ms
5,888 KB
testcase_23 AC 79 ms
5,888 KB
testcase_24 AC 174 ms
10,624 KB
testcase_25 AC 67 ms
5,376 KB
testcase_26 AC 189 ms
12,032 KB
testcase_27 AC 188 ms
11,264 KB
testcase_28 AC 120 ms
7,296 KB
testcase_29 AC 176 ms
10,240 KB
testcase_30 AC 51 ms
5,376 KB
testcase_31 AC 158 ms
9,472 KB
testcase_32 AC 68 ms
5,504 KB
testcase_33 AC 112 ms
7,212 KB
testcase_34 AC 212 ms
13,312 KB
testcase_35 AC 183 ms
11,776 KB
testcase_36 AC 74 ms
5,632 KB
testcase_37 AC 103 ms
6,836 KB
testcase_38 AC 73 ms
5,376 KB
testcase_39 AC 85 ms
5,972 KB
testcase_40 AC 177 ms
11,520 KB
testcase_41 AC 65 ms
5,376 KB
testcase_42 AC 133 ms
8,704 KB
testcase_43 AC 131 ms
8,320 KB
testcase_44 AC 115 ms
8,320 KB
testcase_45 AC 118 ms
8,192 KB
testcase_46 AC 117 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<set>
#include<atcoder/dsu>
using namespace std;
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int N,Q;
	cin>>N>>Q;
	atcoder::dsu uf(N);
	set<int>S;
	for(int i=0;i<N;i++)S.insert(i);
	for(;Q--;)
	{
		int op;cin>>op;
		if(op==1)
		{
			int u,v;cin>>u>>v;u--,v--;
			if(!uf.same(u,v))
			{
				u=uf.leader(u);
				v=uf.leader(v);
				S.erase(u);
				S.erase(v);
				uf.merge(u,v);
				S.insert(uf.leader(u));
			}
		}
		else
		{
			int u;cin>>u;u--;
			u=uf.leader(u);
			int ans=-1;
			for(int v:S)if(u!=v)
			{
				ans=v+1;
				break;
			}
			cout<<ans<<"\n";
		}
	}
}
0