結果

問題 No.2290 UnUnion Find
ユーザー achapiachapi
提出日時 2023-05-05 21:39:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 529 bytes
コンパイル時間 4,547 ms
コンパイル使用メモリ 263,036 KB
実行使用メモリ 14,720 KB
最終ジャッジ日時 2024-11-23 06:31:24
合計ジャッジ時間 72,830 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
9,216 KB
testcase_01 AC 2 ms
10,496 KB
testcase_02 AC 332 ms
10,496 KB
testcase_03 AC 248 ms
9,216 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 268 ms
10,496 KB
testcase_20 AC 269 ms
5,248 KB
testcase_21 AC 674 ms
5,248 KB
testcase_22 AC 386 ms
5,248 KB
testcase_23 AC 389 ms
5,248 KB
testcase_24 AC 271 ms
5,248 KB
testcase_25 AC 1,923 ms
5,248 KB
testcase_26 AC 274 ms
5,248 KB
testcase_27 AC 267 ms
5,248 KB
testcase_28 AC 284 ms
5,248 KB
testcase_29 AC 273 ms
5,248 KB
testcase_30 AC 1,277 ms
5,248 KB
testcase_31 AC 269 ms
5,248 KB
testcase_32 AC 1,237 ms
5,248 KB
testcase_33 AC 290 ms
5,248 KB
testcase_34 AC 272 ms
5,248 KB
testcase_35 AC 267 ms
5,248 KB
testcase_36 AC 652 ms
5,248 KB
testcase_37 AC 297 ms
5,248 KB
testcase_38 AC 602 ms
5,248 KB
testcase_39 AC 364 ms
5,248 KB
testcase_40 AC 273 ms
5,248 KB
testcase_41 TLE -
testcase_42 AC 270 ms
5,248 KB
testcase_43 AC 271 ms
5,248 KB
testcase_44 TLE -
testcase_45 AC 269 ms
5,248 KB
testcase_46 AC 277 ms
9,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
	int n, q;
	cin >> n >> q;
	vector<int> s(n);
	for (int i = 0; i < n; i++){
		s[i] = (i + 1) % n;
	}
	atcoder::dsu uf(n);
	while (q--){
		int t;
		cin >> t;
		if (t == 1){
			int u, v;
			cin >> u >> v;
			u--;
			v--;
			uf.merge(u, v);
		} else {
			int u;
			cin >> u;
			u--;
			if (uf.size(u) == n){
				cout << -1 << endl;
				continue;
			}
			while (uf.same(u, s[u])){
				s[u] = (s[u] + 1) % n;
			}
			cout << s[u] + 1 << endl;
		}
	}
}
0