結果
問題 | No.2290 UnUnion Find |
ユーザー | Ramurata |
提出日時 | 2023-05-05 23:20:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,244 bytes |
コンパイル時間 | 5,241 ms |
コンパイル使用メモリ | 265,128 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-23 12:17:19 |
合計ジャッジ時間 | 22,135 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 346 ms
5,248 KB |
testcase_03 | AC | 247 ms
5,248 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 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
ソースコード
#line 2 "/Users/2P/Desktop/ramstream/library/template/template.hpp" /** * @brief Header */ #include <bits/stdc++.h> // #include <algorithm> // #include <cmath> // #include <complex> // #include <cstdio> // #include <iostream> // #include <map> // #include <numeric> // #include <queue> // #include <set> // #include <stack> // #include <string> // #include <vector> // #include <climits> // #include <deque> // #include <iomanip> // #include <limits> using namespace std; typedef long long ll; #define overload4(_1, _2, _3, _4, name, ...) name #define rep1(i, n) for (int i = 0; i < int(n); ++i) #define rep2(i, s, n) for (int i = int(s); i < int(n); ++i) #define rep3(i, s, n, d) for(int i = int(s); i < int(n); i+=d) #define rep(...) overload4(__VA_ARGS__,rep3,rep2,rep1)(__VA_ARGS__) #define all(x) (x).begin(),(x).end() #define rall(x) (x).rbegin(),(x).rend() #define fir first #define sec second #define pb push_back #define em emplace_back #define mk make_pair #define SUM(a) accumulate(all(a),0LL) #define MIN(a) *min_element(all(a)) #define MAX(a) *max_element(all(a)) template<class... T> void input(T&... a){(cin >> ... >> a);} #define INT(...) int __VA_ARGS__;input(__VA_ARGS__) #define LL(...) ll __VA_ARGS__;input(__VA_ARGS__) #define STR(...) string __VA_ARGS__;input(__VA_ARGS__) #define DBL(...) double __VA_ARGS__;input(__VA_ARGS__) void Yes(bool iSizIs=true) {if(iSizIs){cout<<"Yes"<<endl;}else{cout<<"No"<<endl;}} void No() {cout<<"No"<<endl;} template<class T> void OUT(T x) {cout << (x) << endl;} template<class T> bool chmin(T &a, T b) {if (a > b) {a = b;return true;}return false;} template<class T> bool chmax(T &a, T b) {if (a < b) {a = b;return true;}return false;} ll POW(ll a, ll n, ll MOD) { if (n == 0) return 1; if (n == 1) return a % MOD; ll ret = POW(a, n / 2, MOD) % MOD; (ret *= ret) %= MOD; if (n % 2 == 1) { (ret *= a) %= MOD; } return ret; } const int inf = INT_MAX / 2; const ll infl = 1LL << 60; using vi = vector<int>; using vvi = vector<vi>; using vl = vector<ll>; using vvl = vector<vl>; using vd = vector<double>; using vvd = vector<vd>; using vs = vector<string>; using vvs = vector<vs>; using vb = vector<bool>; using vvb = vector<vb>; using pii = pair<int, int>; using pll = pair<ll, ll>; using mii = map<int, int>; using mll = map<ll, ll>; #include <atcoder/all> using namespace atcoder; #line 2 "sol.cpp" int main() { int n, q; cin >> n >> q; dsu uni(n); vi p(n); rep(i, n) p[i] = i; rep(qi, q) { int t; cin >> t; if(t == 1) { int u, v; cin >> u >> v; if(v > u) swap(u, v); p[uni.leader(v-1)] = p[uni.leader(u-1)]; uni.merge(u-1,v-1); } else { int v; cin >> v; v--; if(uni.size(v) == n) { cout << -1 << endl; } else { auto it = upper_bound(all(p), p[uni.leader(v)]); if(it == p.end()) { it = lower_bound(all(p), p[uni.leader(v)]); while(*it==p[uni.leader(v)]) it--; cout << *it+1 << endl; } else { cout << *it+1 << endl; } } } } }