結果

問題 No.2290 UnUnion Find
ユーザー piratapirata
提出日時 2023-05-05 22:32:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,264 bytes
コンパイル時間 4,885 ms
コンパイル使用メモリ 262,664 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-11-23 09:29:49
合計ジャッジ時間 66,751 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
8,832 KB
testcase_02 AC 278 ms
8,960 KB
testcase_03 AC 168 ms
8,832 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 183 ms
8,832 KB
testcase_20 AC 179 ms
5,248 KB
testcase_21 AC 316 ms
5,248 KB
testcase_22 AC 246 ms
5,248 KB
testcase_23 AC 361 ms
5,248 KB
testcase_24 AC 174 ms
5,248 KB
testcase_25 AC 711 ms
5,248 KB
testcase_26 AC 177 ms
5,248 KB
testcase_27 AC 177 ms
5,248 KB
testcase_28 AC 200 ms
5,248 KB
testcase_29 AC 176 ms
5,248 KB
testcase_30 AC 893 ms
5,248 KB
testcase_31 AC 181 ms
5,248 KB
testcase_32 AC 431 ms
5,248 KB
testcase_33 AC 208 ms
5,248 KB
testcase_34 AC 181 ms
5,248 KB
testcase_35 AC 178 ms
5,248 KB
testcase_36 AC 453 ms
5,248 KB
testcase_37 AC 216 ms
5,248 KB
testcase_38 AC 265 ms
5,248 KB
testcase_39 AC 288 ms
5,248 KB
testcase_40 AC 179 ms
5,248 KB
testcase_41 AC 1,242 ms
5,248 KB
testcase_42 AC 188 ms
5,248 KB
testcase_43 AC 188 ms
5,248 KB
testcase_44 TLE -
testcase_45 AC 175 ms
5,248 KB
testcase_46 AC 183 ms
8,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using Graph = vector<vector<int> >;
using mint = modint998244353;
const int INF = 1e9;
const int MOD = 1e9+7;
const ll LINF = 1e+18;

#define REP(i, n) for (int i = 0; (i) < (int)(n); ++ (i))
#define REP2(i, s, n) for (int i = (s); i < (int)(n); i++)
#define YesNo(T) if(T){cout<<"Yes"<<endl;}else{cout<<"No"<<endl;}
#define ALL(x) x.begin(),x.end()
#define VI vector<int>
#define VL vector<ll>
#define VC vector<char>
#define VVI vector<vector<int> >
#define VVL vector<vector<ll> >
#define VVC vector<vector<char> >
#define VPII vector<pair<int,int> >
#define VPLL vector<pair<ll,ll> >

template <class T>
	inline void printVec(std::vector<T> v){
	REP(i,v.size()){
	if(i) std::cout << " ";
	std::cout << v[i];
	} std::cout << std::endl;
}

int main() {
	cin.tie(0);
	ios_base::sync_with_stdio(false);
	int N,Q;
	cin >> N >> Q;
	dsu d(N);
	REP(i,Q){
		int q;
		cin >> q;
		if(q == 1){
			int u,v;
			cin >> u >> v;
			u--;v--;
			d.merge(u,v);
		}
		else{
			int v;
			cin >> v;
			v--;
			if(d.size(v) == N){
				cout << -1 << endl;
				continue;
			}
			REP(i,N){
				if(!d.same(v,i)){
					cout << i + 1 << endl;
					break;
				}
			}
		}
	}
}
0