結果

問題 No.2290 UnUnion Find
ユーザー furonfuron
提出日時 2023-05-15 21:11:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,945 bytes
コンパイル時間 1,499 ms
コンパイル使用メモリ 134,344 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-05-08 03:05:59
合計ジャッジ時間 23,905 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 335 ms
5,376 KB
testcase_03 AC 357 ms
8,704 KB
testcase_04 AC 363 ms
8,704 KB
testcase_05 AC 358 ms
8,704 KB
testcase_06 AC 360 ms
8,704 KB
testcase_07 AC 365 ms
8,832 KB
testcase_08 AC 363 ms
8,704 KB
testcase_09 AC 360 ms
8,832 KB
testcase_10 AC 358 ms
8,704 KB
testcase_11 AC 364 ms
8,704 KB
testcase_12 AC 366 ms
8,704 KB
testcase_13 AC 362 ms
8,704 KB
testcase_14 AC 357 ms
8,832 KB
testcase_15 AC 356 ms
8,704 KB
testcase_16 AC 359 ms
8,704 KB
testcase_17 AC 355 ms
8,704 KB
testcase_18 AC 360 ms
8,704 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 441 ms
11,264 KB
testcase_25 WA -
testcase_26 AC 464 ms
12,800 KB
testcase_27 AC 455 ms
11,776 KB
testcase_28 WA -
testcase_29 AC 429 ms
10,752 KB
testcase_30 WA -
testcase_31 AC 431 ms
9,984 KB
testcase_32 WA -
testcase_33 AC 390 ms
7,680 KB
testcase_34 AC 480 ms
14,208 KB
testcase_35 AC 453 ms
12,544 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 457 ms
12,032 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 361 ms
8,704 KB
testcase_45 AC 377 ms
8,704 KB
testcase_46 AC 380 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <vector>
#include <algorithm>
#include <functional>
#include <cmath>
#include <string>
#include <queue>
#include <map>
#include <bitset>
#include <set>
#include <stack>
#include <numeric>
#include <unordered_map>
#include <random>

using namespace std;

using ll = long long;
using vi = vector<int>;
using vvi = vector<vi>;
using vl = vector<ll>;
using vvl = vector<vl>;
using vb = vector<bool>;
using vvb = vector<vb>;
using vd = vector<double>;
using vs = vector<string>;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
using pdd = pair<double, double>;
using vpii = vector<pii>;
using vpll = vector<pll>;
using vpdd = vector<pdd>;
const int inf = (1 << 30) - 1;
const ll INF = 1LL << 60;
const int MOD = 1000000007;
//const int MOD = 998244353;

struct UnionFind {
	vector<int> par;
	vector<int> sizes;

	UnionFind(int n) : par(n), sizes(n, 1) {
		for (int i = 0; i < n; i++) par[i] = i;
	}

	int root(int x) {
		if (x == par[x]) return x;
		return par[x] = root(par[x]);
	}

	void unite(int x, int y) {
		x = root(x);
		y = root(y);
		if (x == y) return;

		if (sizes[x] < sizes[y]) swap(x, y);
		par[y] = x;
		sizes[x] += sizes[y];
	}

	bool same(int x, int y) { return root(x) == root(y); }

	int size(int x) { return sizes[root(x)]; }
};

int main() {
	int n, q;
	cin >> n >> q;
	UnionFind uf(n);
	set<int> node;
	for (int i = 0; i < n; i++) node.insert(i);

	for (int i = 0; i < q; i++) {
		int t, u, v;
		cin >> t;
		if (t == 1) {
			cin >> u >> v;
			u--; v--;
			if (!uf.same(u, v)) {
				uf.unite(u, v);
				if (uf.root(v) != v) node.erase(v);
				if (uf.root(u) != u) node.erase(u);
			}

		}
		else {
			cin >> v;
			v--;
			int r = uf.root(v);
			if (*node.begin() == r) {
				if (node.size() == 1) {
					cout << -1 << endl;
				}
				else {
					cout << *(next(node.begin())) + 1 << endl;
				}
			}
			else {
				cout << *node.begin() + 1 << endl;
			}
		}
	}

	return 0;
}
0