結果

問題 No.2290 UnUnion Find
ユーザー Nzt3Nzt3
提出日時 2023-05-12 02:07:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 1,105 bytes
コンパイル時間 2,277 ms
コンパイル使用メモリ 205,532 KB
実行使用メモリ 7,036 KB
最終ジャッジ日時 2024-05-05 20:25:57
合計ジャッジ時間 11,992 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 34 ms
6,980 KB
testcase_03 AC 46 ms
6,524 KB
testcase_04 AC 50 ms
6,780 KB
testcase_05 AC 50 ms
6,780 KB
testcase_06 AC 51 ms
6,944 KB
testcase_07 AC 49 ms
6,268 KB
testcase_08 AC 50 ms
6,396 KB
testcase_09 AC 50 ms
6,908 KB
testcase_10 AC 50 ms
6,908 KB
testcase_11 AC 50 ms
6,140 KB
testcase_12 AC 51 ms
6,264 KB
testcase_13 AC 51 ms
6,908 KB
testcase_14 AC 51 ms
6,776 KB
testcase_15 AC 52 ms
6,776 KB
testcase_16 AC 51 ms
6,652 KB
testcase_17 AC 50 ms
6,412 KB
testcase_18 AC 50 ms
6,392 KB
testcase_19 AC 55 ms
5,880 KB
testcase_20 AC 63 ms
6,012 KB
testcase_21 AC 40 ms
6,908 KB
testcase_22 AC 50 ms
6,908 KB
testcase_23 AC 51 ms
6,908 KB
testcase_24 AC 58 ms
6,016 KB
testcase_25 AC 48 ms
6,944 KB
testcase_26 AC 60 ms
5,880 KB
testcase_27 AC 59 ms
5,880 KB
testcase_28 AC 52 ms
5,880 KB
testcase_29 AC 57 ms
5,884 KB
testcase_30 AC 43 ms
6,944 KB
testcase_31 AC 56 ms
5,992 KB
testcase_32 AC 49 ms
6,940 KB
testcase_33 AC 52 ms
5,884 KB
testcase_34 AC 61 ms
5,884 KB
testcase_35 AC 59 ms
5,888 KB
testcase_36 AC 49 ms
6,912 KB
testcase_37 AC 52 ms
6,904 KB
testcase_38 AC 51 ms
7,036 KB
testcase_39 AC 52 ms
7,032 KB
testcase_40 AC 65 ms
5,888 KB
testcase_41 AC 49 ms
7,032 KB
testcase_42 AC 55 ms
6,016 KB
testcase_43 AC 55 ms
6,012 KB
testcase_44 AC 51 ms
6,524 KB
testcase_45 AC 52 ms
6,272 KB
testcase_46 AC 51 ms
6,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

constexpr int INPUT_MAX=200005;
int rt[INPUT_MAX];
int sz[INPUT_MAX];
int getroot(int n){
  if(rt[n]==-1)return n;
  return rt[n]=getroot(rt[n]);
}
void unite(int a,int b){
  a=getroot(a),b=getroot(b);
  if(a!=b){
    rt[a]=b;
    sz[b]+=sz[a];
  }
}

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  fill(rt,rt+INPUT_MAX,-1);
  fill(sz,sz+INPUT_MAX,1);
  int N,Q;
  cin>>N>>Q;
  int NG=Q;
  vector<array<int,2>>output;
  for(int i=0;i<Q;i++){
    int p;
    cin>>p;
    if(p==1){
      int a,b;
      cin>>a>>b;
      --a,--b;
      if(getroot(a)!=getroot(b)&&sz[getroot(a)]+sz[getroot(b)]==N){
        NG=i;
      }else{
        unite(a,b);
      }
    }else{
      int v;
      cin>>v;
      output.push_back({i,v-1});
    }
  }
  array<int,2>rrr={-1,-1};
  for(int i=0;i<N;i++){
    int t=getroot(i);
    if(rrr[0]==-1){
      rrr[0]=t;
    }else if(rrr[1]==-1&&rrr[0]!=t){
      rrr[1]=t;
    }
  }
  for(auto [i,j]:output){
    if(i>=NG){
      cout<<"-1\n";
    }else{
      cout<<(getroot(j)==rrr[0]?rrr[1]:rrr[0])+1<<'\n';
    }
  }
}
0