結果

問題 No.2290 UnUnion Find
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2023-05-05 21:51:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,366 bytes
コンパイル時間 2,498 ms
コンパイル使用メモリ 215,092 KB
実行使用メモリ 832,384 KB
最終ジャッジ日時 2024-11-23 07:01:40
合計ジャッジ時間 54,368 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 316 ms
5,248 KB
testcase_03 AC 364 ms
14,848 KB
testcase_04 AC 366 ms
14,848 KB
testcase_05 AC 362 ms
14,848 KB
testcase_06 AC 371 ms
14,848 KB
testcase_07 AC 357 ms
14,848 KB
testcase_08 AC 360 ms
14,848 KB
testcase_09 AC 361 ms
14,848 KB
testcase_10 AC 359 ms
14,976 KB
testcase_11 AC 363 ms
14,848 KB
testcase_12 AC 360 ms
14,848 KB
testcase_13 AC 370 ms
14,848 KB
testcase_14 AC 364 ms
14,848 KB
testcase_15 AC 367 ms
14,848 KB
testcase_16 AC 362 ms
14,848 KB
testcase_17 AC 376 ms
14,848 KB
testcase_18 AC 357 ms
14,848 KB
testcase_19 TLE -
testcase_20 AC 677 ms
26,752 KB
testcase_21 AC 417 ms
61,568 KB
testcase_22 MLE -
testcase_23 MLE -
testcase_24 TLE -
testcase_25 MLE -
testcase_26 AC 708 ms
159,952 KB
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 AC 580 ms
139,520 KB
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 AC 559 ms
26,616 KB
testcase_35 AC 864 ms
278,000 KB
testcase_36 MLE -
testcase_37 MLE -
testcase_38 MLE -
testcase_39 MLE -
testcase_40 AC 1,127 ms
457,728 KB
testcase_41 MLE -
testcase_42 MLE -
testcase_43 MLE -
testcase_44 AC 383 ms
14,848 KB
testcase_45 AC 369 ms
14,976 KB
testcase_46 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using Vi = std::vector<int> ;
using Vl = vector<ll>;
using VVi = vector<Vi>;

class UnionFind {
	Vi par;
	Vi siz;
	Vl val;
	VVi iv;
	
	public :
	set<int> st;
	UnionFind(int N = 0) {
		par.resize(N);
		siz.resize(N);
		iv.resize(N);
		iota(par.begin(), par.end(), 0);
		fill(siz.begin(), siz.end(), 0);
		for (int i = 0; i < N; i ++) {
			iv[i].push_back(i);
			st.insert(i);
		}
	}
	void init(int N) {
		par.resize(N);
		siz.resize(N);
		iota(par.begin(), par.end(), 0);
		fill(siz.begin(), siz.end(), 0);
	}
	int root(int v) {
		if (v == par[v]) {
			return v;
		} else {
			return par[v] = root(par[v]);
		}
	}
	bool unit(int a, int b) {
		a = root(a);
		b = root(b);
		if (a == b) {
			return false;
		}
		if (siz[a] < siz[b]) {
			swap(a, b);
		}
		par[b] = a;
		siz[a] += siz[b];
		for (auto x : iv[b]) {
			iv[a].push_back(x);
		}
		st.erase(b);
		return true;
	}
};
int main () {
	int N, Q;
	cin >> N >> Q;
	UnionFind uu(N);
	while (Q--) {
		int t;
		cin >> t;
		if (t - 1) {
			int a;
			cin >> a;
			if (uu.st.size() == 1) {
				puts("-1");
			} else {
				a = uu.root(--a);
				if (a != *uu.st.begin()) {
					cout << (*uu.st.begin()) + 1 << endl;
				} else {
					cout << (*uu.st.rbegin()) + 1 << endl;
				}
			}
		} else {
			int a, b;
			cin >> a >> b;
			uu.unit(--a, --b);
		}
	}
}
0