結果

問題 No.2290 UnUnion Find
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2023-05-05 21:47:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,354 bytes
コンパイル時間 2,567 ms
コンパイル使用メモリ 215,284 KB
実行使用メモリ 814,252 KB
最終ジャッジ日時 2024-11-23 06:51:09
合計ジャッジ時間 53,869 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 307 ms
5,248 KB
testcase_03 AC 345 ms
14,848 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 TLE -
testcase_20 WA -
testcase_21 WA -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 TLE -
testcase_25 MLE -
testcase_26 WA -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 WA -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 WA -
testcase_35 WA -
testcase_36 MLE -
testcase_37 MLE -
testcase_38 MLE -
testcase_39 MLE -
testcase_40 WA -
testcase_41 MLE -
testcase_42 MLE -
testcase_43 MLE -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

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() << endl;
				} else {
					cout << *uu.st.rbegin() << endl;
				}
			}
		} else {
			int a, b;
			cin >> a >> b;
			uu.unit(--a, --b);
		}
	}
}
0