結果
問題 | No.2290 UnUnion Find |
ユーザー | Taiki0715 |
提出日時 | 2023-05-05 22:31:46 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,021 bytes |
コンパイル時間 | 3,010 ms |
コンパイル使用メモリ | 163,356 KB |
実行使用メモリ | 15,616 KB |
最終ジャッジ日時 | 2024-05-02 17:19:55 |
合計ジャッジ時間 | 20,697 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 314 ms
5,376 KB |
testcase_03 | AC | 255 ms
9,728 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 | AC | 309 ms
15,616 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 304 ms
13,056 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 294 ms
13,440 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 297 ms
11,648 KB |
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 | AC | 366 ms
13,824 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 298 ms
10,112 KB |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <set> #include <queue> #include <stack> #include <math.h> #include <cassert> #include <bitset> #include <map> #include <algorithm> #include <iterator> #include <string> #include <utility> #include <numeric> #include <regex> #include <complex> #include <atcoder/all> using namespace atcoder; using namespace std; using ll=long long; using ull=unsigned long long; using P=pair<ll,ll>; template<typename T>using minque=priority_queue<T,vector<T>,greater<T>>; template<typename T>bool chmax(T &a,const T &b){return (a<b?(a=b,true):false);} template<typename T>bool chmin(T &a,const T &b){return (a>b?(a=b,true):false);} template<typename T1,typename T2> ostream &operator<<(ostream &os,const pair<T1,T2>&p){ os<<p.first<<" "<<p.second; return os; } template<typename T1,typename T2> istream &operator>>(istream &is,pair<T1,T2>&p){ is>>p.first>>p.second; return is; } template<typename T> istream &operator>>(istream &is,vector<T> &a){ for(auto &i:a)is>>i; return is; } #define reps(i,a,n) for(int i=(a);i<(n);i++) #define rep(i,n) reps(i,0,n) #define all(x) x.begin(),x.end() ll myceil(ll a,ll b){return (a+b-1)/b;} int main(){ int n,q; cin>>n>>q; vector<vector<int>>id(n); rep(i,n)id[i].push_back(i); dsu uf(n); while(q--){ int t; cin>>t; if(t==1){ int u,v; cin>>u>>v; u--,v--; if(uf.same(u,v))continue; u=uf.leader(u),v=uf.leader(v); uf.merge(u,v); int l=uf.leader(u); if(l!=u)swap(u,v); for(auto i:id[v])id[u].push_back(i); //sort(all(id[u])); } else{ int u; cin>>u; u--; u=uf.leader(u); if(id[u].size()==n){ cout<<-1<<endl; continue; } if(!binary_search(all(id[u]),n-1)){ cout<<n<<endl; continue; } int l=0,r=n; while(r-l>1){ int mid=(l+r)/2; if(lower_bound(all(id[u]),mid)-id[u].begin()==mid)l=mid; else r=mid; } cout<<l+1<<endl; } } }