結果

問題 No.416 旅行会社
ユーザー cureskolcureskol
提出日時 2022-12-10 10:32:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 337 ms / 4,000 ms
コード長 6,673 bytes
コンパイル時間 3,989 ms
コンパイル使用メモリ 232,260 KB
実行使用メモリ 15,220 KB
最終ジャッジ日時 2023-08-21 10:50:37
合計ジャッジ時間 7,864 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
9,716 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,384 KB
testcase_04 AC 2 ms
4,384 KB
testcase_05 AC 2 ms
4,384 KB
testcase_06 AC 2 ms
4,384 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 4 ms
4,380 KB
testcase_09 AC 15 ms
4,380 KB
testcase_10 AC 131 ms
9,716 KB
testcase_11 AC 128 ms
9,580 KB
testcase_12 AC 133 ms
9,600 KB
testcase_13 AC 134 ms
9,608 KB
testcase_14 AC 333 ms
15,212 KB
testcase_15 AC 323 ms
15,220 KB
testcase_16 AC 311 ms
15,116 KB
testcase_17 AC 328 ms
15,148 KB
testcase_18 AC 337 ms
15,172 KB
testcase_19 AC 204 ms
11,952 KB
testcase_20 AC 216 ms
11,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma region template
#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
 
using ll=long long;
using ld=long double;
using vi=vector<int>;
using vll=vector<ll>;
using pi=pair<int,int>;
using pll=pair<ll,ll>;
 
#define overload2(a,b,c,...) c
#define overload3(a,b,c,d,...) d
#define overload4(a,b,c,d,e,...) e
#define overload5(a,b,c,d,e,f,...) f
 
#define TYPE1(T) template<typename T>
#define TYPE2(T,U) template<typename T,typename U>
#define TYPE(...) overload2(__VA_ARGS__,TYPE2,TYPE1)(__VA_ARGS__)
#define TYPES1(T) template<typename... T>
#define TYPES2(H,T) template<typename H,typename... T>
#define TYPES(...) overload2(__VA_ARGS__,TYPES2,TYPES1)(__VA_ARGS__)
 
#define REP4(i,s,n,d) for(int i=(s);i<(n);i+=(d))
#define REP3(i,s,n) REP4(i,s,n,1)
#define REP2(i,n) REP3(i,0,n)
#define REP1(n) REP2(tomato,n)
#define REP(...) overload4(__VA_ARGS__,REP4,REP3,REP2,REP1)(__VA_ARGS__)
 
#define RREP4(i,n,s,d) for(int i=(n)-1;i>=s;i-=d)
#define RREP3(i,n,s) RREP4(i,n,s,1)
#define RREP2(i,n) RREP3(i,n,0)
#define RREP1(n) RREP2(tomato,n)
#define RREP(...) overload4(__VA_ARGS__,RREP4,RREP3,RREP2,RREP1)(__VA_ARGS__)

#define FOR4(a,b,c,d,v) for(auto [a,b,c,d]:v)
#define FOR3(a,b,c,v) for(auto [a,b,c]:v)
#define FOR2(a,b,v) for(auto [a,b]:v)
#define FOR1(a,v) for(auto a:v)
#define FOR(...) overload5(__VA_ARGS__,FOR4,FOR3,FOR2,FOR1)(__VA_ARGS__)

#define AFOR4(a,b,c,d,v) for(auto&[a,b,c,d]:v)
#define AFOR3(a,b,c,v) for(auto&[a,b,c]:v)
#define AFOR2(a,b,v) for(auto&[a,b]:v)
#define AFOR1(a,v) for(auto&a:v)
#define AFOR(...) overload5(__VA_ARGS__,AFOR4,AFOR3,AFOR2,AFOR1)(__VA_ARGS__)

#define CFOR4(a,b,c,d,v) for(const auto&[a,b,c,d]:v)
#define CFOR3(a,b,c,v) for(const auto&[a,b,c]:v)
#define CFOR2(a,b,v) for(const auto&[a,b]:v)
#define CFOR1(a,v) for(const auto&a:v)
#define CFOR(...) overload5(__VA_ARGS__,CFOR4,CFOR3,CFOR2,CFOR1)(__VA_ARGS__)
 
#define ALL(v) v.begin(),v.end()
#define RALL(v) v.rbegin(),v.rend()
#define SORT(v) sort(ALL(v))
#define RSORT(v) sort(RALL(v))
#define REVERSE(v) reverse(ALL(v))
#define UNIQUE(v) SORT(v),v.erase(unique(ALL(v)),v.end())
 
TYPES(T) void input(T&... a){ (cin>>...>>a); }
#define DECLARE(T,...) T __VA_ARGS__;input(__VA_ARGS__);
#define INT(...) DECLARE(int,__VA_ARGS__)
#define STR(...) DECLARE(string,__VA_ARGS__)
#define LL(...) DECLARE(long long,__VA_ARGS__)
#define CHR(...) DECLARE(char,__VA_ARGS__)
#define DBL(...) DECLARE(double,__VA_ARGS__)
#define VI(n,v) vi v(n);cin>>v;
#define VLL(n,v) vll v(n);cin>>v;
 
TYPE(T) istream&operator>>(istream&is,vector<T>&v){
  for(auto&a:v)cin>>a;
  return is;
}
TYPE(T) ostream&operator<<(ostream&os,const vector<T>&v){
  if(&os==&cerr)os<<"[";
  REP(i,v.size()){
    os<<v[i];
    if(i+1<v.size())os<<(&os==&cerr?",":" ");
  }
  if(&os==&cerr)os<<"]";
  return os;
}
TYPE(T,S) istream&operator>>(istream&is,pair<T,S>&p){
  cin>>p.first>>p.second;
  return is;
}

#ifdef __LOCAL
 #include <debug>
#else
 #define debug(...) void(0)
#endif

void print(){ cout << '\n'; }
TYPES(T,Ts) void print(const T& a,const Ts&... b){
  cout<<a;
  (cout<<...<<(cout<< ' ',b));
  cout << '\n';
}
 
TYPE(T) using pq=priority_queue<T>;
TYPE(T) using pqg=priority_queue<T,vector<T>,greater<T>>;
TYPE(T) T pick(queue<T>& que){assert(que.size()); T a=que.front();que.pop();return a;}
TYPE(T) T pick(pq<T>& que){assert(que.size()); T a=que.top();que.pop();return a;}
TYPE(T) T pick(pqg<T>& que){assert(que.size()); T a=que.top();que.pop();return a;}
TYPE(T) T pick(stack<T>& sta){assert(sta.size()); T a=sta.top();sta.pop();return a;}
 
string YES(bool f=true){return (f?"YES":"NO");}
string Yes(bool f=true){return (f?"Yes":"No");}
string yes(bool f=true){return (f?"yes":"no");}
 
constexpr int INF=1e9+7;
constexpr ll LINF=ll(1e18)+7;
constexpr ld EPS=1e-10;
 
vi iota(int n){vi a(n);iota(ALL(a),0);return a;}
TYPE(T) vector<pair<T,int>> query_sort(const vector<T>&v){
  vector<pair<T,int>> res(v.size());
  REP(i,v.size())res[i]={v[i],i};
  SORT(res);
  return res;
}
TYPE(T) T rev(T a){ REVERSE(a);return a; }
TYPE(T) void fin(T a){cout<<a<<endl;exit(0);}
TYPE(T) bool chmax(T &a,T b){return (a<b&&(a=b,true));}
TYPE(T) bool chmin(T &a,T b){return (a>b&&(a=b,true));}
TYPES(T,Ns) auto make_vector(T x,int n,Ns ...ns){
  if constexpr(sizeof...(ns)==0)return vector<T>(n,x);
  else return vector(n,make_vector<T>(x,ns...));
}
bool in(const ll S,const int a){return (S>>a)&1;}
int popcount(const ll S){return __builtin_popcountll(S);}
#pragma endregion template

class PartialPersistentUnionFind{
  int now; // 現在時刻
  vector<int> par, // 親
              rank, // マージテク用の rank
              time; // 親が par になった時刻
public:
  PartialPersistentUnionFind(int n):now(0),par(n),rank(n,0),time(n,0){
    iota(par.begin(),par.end(),0);
  }

  // 時刻 t の leader
  int find(int x, int t=numeric_limits<int>::max()){
    while(x!=par[x] and time[x]<t)x=par[x];
    return x;
  }

  // 時刻 t で x,y が連結か
  bool same(int x,int y,int t=numeric_limits<int>::max()){
    return find(x,t)==find(y,t);
  }

  // x と y がいつ連結になったか(まだ非連結なら -1 )
  int when_same(int x,int y){
    stack<int> sx,sy;
    while(x!=par[x]){
      sx.push(time[x]);
      x=par[x];
    }
    while(y!=par[y]){
      sy.push(time[y]);
      y=par[y];
    }
    if(x!=y)return -1;
    while(sx.size() and sy.size() and sx.top()==sy.top()){
      sx.pop();
      sy.pop();
    }
    int res=0;
    while(sx.size()){
      res=max(res,sx.top());
      sx.pop();
    }
    while(sy.size()){
      res=max(res,sy.top());
      sy.pop();
    }
    return res;
  }

  // merge が成功したら時刻を 1 進めたあとその時刻を返す
  // 失敗したら stop が false なら時刻を進めて、-1 を返す 
  int merge(int x,int y,bool stop=false){
    now++;
    x=find(x);
    y=find(y);
    if(x==y){
      if(stop)now--;
      return -1;
    }
    if(rank[x]<rank[y])swap(x,y);
    if(rank[x]==rank[y])rank[x]++;
    par[y]=x;
    return time[y]=now;
  }
};

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  INT(n,m,q);
  PartialPersistentUnionFind uf(n);
  set<pair<int,int>> edge;
  REP(m){
    INT(a,b);a--;b--;
    edge.insert(minmax(a,b));
  }
  vector<pair<int,int>> query(q);
  REP(i,q){
    INT(a,b);a--;b--;
    edge.erase(minmax(a,b));
    query[i]=minmax(a,b);
  }
  for(auto&[a,b]:edge)uf.merge(a,b);
  map<int,int> time;
  RREP(i,q){
    auto [a,b]=query[i];
    int now=uf.merge(a,b);
    time[now]=i+1;
  }
  for(int i=1;i<n;i++){
    int t=uf.when_same(0,i);
    if(t==-1)cout<<0<<"\n";
    else if(!time.count(t))cout<<-1<<"\n";
    else cout<<time[t]<<"\n";
  }
}
0