結果

問題 No.2290 UnUnion Find
ユーザー achapiachapi
提出日時 2023-05-05 22:19:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 519 ms / 2,000 ms
コード長 678 bytes
コンパイル時間 4,553 ms
コンパイル使用メモリ 268,384 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-11-23 08:45:00
合計ジャッジ時間 28,063 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 344 ms
5,248 KB
testcase_03 AC 357 ms
8,320 KB
testcase_04 AC 357 ms
8,320 KB
testcase_05 AC 357 ms
8,320 KB
testcase_06 AC 358 ms
8,320 KB
testcase_07 AC 392 ms
8,320 KB
testcase_08 AC 361 ms
8,320 KB
testcase_09 AC 366 ms
8,320 KB
testcase_10 AC 377 ms
8,320 KB
testcase_11 AC 358 ms
8,448 KB
testcase_12 AC 372 ms
8,320 KB
testcase_13 AC 359 ms
8,320 KB
testcase_14 AC 352 ms
8,448 KB
testcase_15 AC 352 ms
8,320 KB
testcase_16 AC 370 ms
8,320 KB
testcase_17 AC 354 ms
8,344 KB
testcase_18 AC 384 ms
8,320 KB
testcase_19 AC 436 ms
9,216 KB
testcase_20 AC 519 ms
13,440 KB
testcase_21 AC 345 ms
5,248 KB
testcase_22 AC 368 ms
6,008 KB
testcase_23 AC 367 ms
5,876 KB
testcase_24 AC 480 ms
10,752 KB
testcase_25 AC 363 ms
5,376 KB
testcase_26 AC 507 ms
12,032 KB
testcase_27 AC 484 ms
11,264 KB
testcase_28 AC 393 ms
7,424 KB
testcase_29 AC 462 ms
10,240 KB
testcase_30 AC 353 ms
5,248 KB
testcase_31 AC 438 ms
9,472 KB
testcase_32 AC 368 ms
5,360 KB
testcase_33 AC 397 ms
7,440 KB
testcase_34 AC 518 ms
13,312 KB
testcase_35 AC 492 ms
11,904 KB
testcase_36 AC 364 ms
5,632 KB
testcase_37 AC 392 ms
6,816 KB
testcase_38 AC 362 ms
5,480 KB
testcase_39 AC 366 ms
6,272 KB
testcase_40 AC 472 ms
11,392 KB
testcase_41 AC 357 ms
5,248 KB
testcase_42 AC 457 ms
8,704 KB
testcase_43 AC 419 ms
8,448 KB
testcase_44 AC 349 ms
8,320 KB
testcase_45 AC 356 ms
8,448 KB
testcase_46 AC 362 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
	int n, q;
	cin >> n >> q;
	atcoder::dsu uf(n);
	multiset<int> s;
	for (int i = 0; i < n; i++){
		s.insert(i);
	}
	while (q--){
		int t;
		cin >> t;
		if (t == 1){
			int u, v;
			cin >> u >> v;
			u--;
			v--;
			s.erase(uf.leader(u));
			s.erase(uf.leader(v));
			uf.merge(u, v);
			s.insert(uf.leader(u));
			s.insert(uf.leader(v));
		} else {
			int u;
			cin >> u;
			u--;
			if ((*s.begin()) != uf.leader(u)){
				cout << (*s.begin()) + 1 << endl;
			} else if ((*prev(s.end())) != uf.leader(u)) {
				cout << (*prev(s.end())) + 1 << endl;
			} else {
				cout << -1 << endl;
			}
		}
	}
}
0