結果

問題 No.2290 UnUnion Find
ユーザー forest3forest3
提出日時 2023-05-09 12:49:59
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 388 ms / 2,000 ms
コード長 978 bytes
コンパイル時間 2,026 ms
コンパイル使用メモリ 175,892 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-11-26 00:02:44
合計ジャッジ時間 21,422 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 307 ms
5,248 KB
testcase_03 AC 278 ms
8,448 KB
testcase_04 AC 276 ms
8,320 KB
testcase_05 AC 287 ms
8,320 KB
testcase_06 AC 283 ms
8,320 KB
testcase_07 AC 281 ms
8,448 KB
testcase_08 AC 274 ms
8,320 KB
testcase_09 AC 279 ms
8,448 KB
testcase_10 AC 269 ms
8,320 KB
testcase_11 AC 277 ms
8,320 KB
testcase_12 AC 287 ms
8,320 KB
testcase_13 AC 278 ms
8,320 KB
testcase_14 AC 270 ms
8,448 KB
testcase_15 AC 271 ms
8,320 KB
testcase_16 AC 284 ms
8,320 KB
testcase_17 AC 278 ms
8,320 KB
testcase_18 AC 275 ms
8,320 KB
testcase_19 AC 298 ms
9,216 KB
testcase_20 AC 332 ms
13,312 KB
testcase_21 AC 301 ms
5,248 KB
testcase_22 AC 290 ms
5,876 KB
testcase_23 AC 292 ms
5,872 KB
testcase_24 AC 324 ms
10,624 KB
testcase_25 AC 291 ms
5,248 KB
testcase_26 AC 326 ms
12,032 KB
testcase_27 AC 318 ms
11,264 KB
testcase_28 AC 284 ms
7,428 KB
testcase_29 AC 306 ms
10,240 KB
testcase_30 AC 297 ms
5,248 KB
testcase_31 AC 339 ms
9,472 KB
testcase_32 AC 293 ms
5,248 KB
testcase_33 AC 283 ms
7,316 KB
testcase_34 AC 338 ms
13,440 KB
testcase_35 AC 388 ms
11,904 KB
testcase_36 AC 295 ms
5,632 KB
testcase_37 AC 291 ms
6,808 KB
testcase_38 AC 294 ms
5,484 KB
testcase_39 AC 306 ms
6,016 KB
testcase_40 AC 317 ms
11,392 KB
testcase_41 AC 290 ms
5,248 KB
testcase_42 AC 346 ms
8,704 KB
testcase_43 AC 291 ms
8,448 KB
testcase_44 AC 273 ms
8,320 KB
testcase_45 AC 281 ms
8,320 KB
testcase_46 AC 279 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

struct UnionFind {
  vector< int > data;
  set<int> st;
 
  UnionFind(int sz) {
    data.assign(sz, -1);
	for( int i = 0; i < sz; i++ ) st.insert( i );
  }
 
  bool unite(int x, int y) {
    x = find(x), y = find(y);
    if(x == y) return (false);
    if(data[x] > data[y]) swap(x, y);
    data[x] += data[y];
    data[y] = x;
	st.erase( y );
    return (true);
  }
 
  int find(int k) {
    if(data[k] < 0) return (k);
    return (data[k] = find(data[k]));
  }
 
  int size(int k) {
    return (-data[find(k)]);
  }
  int ex( int r ) {
	auto it = st.begin();
	while( *it == r ) it++;
	return *it;
  }
};

int main() {
	int N, Q;
	cin >> N >> Q;
	UnionFind uf( N );
	for( int i = 0; i < Q; i++ ) {
		int t, u, v;
		cin >> t >> u;
		u--;
		if( t == 1 ) {
			cin >> v;
			v--;
			uf.unite( u, v );
		}
		else {
			int ans = -1;
			int r = uf.find( u );
			if( uf.size( r ) < N ) ans = uf.ex( r ) + 1;
			cout << ans << endl;
		}
	}
}
0