結果

問題 No.416 旅行会社
ユーザー mint6421mint6421
提出日時 2019-08-21 23:08:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,956 bytes
コンパイル時間 2,224 ms
コンパイル使用メモリ 178,428 KB
実行使用メモリ 25,664 KB
最終ジャッジ日時 2024-04-18 10:42:05
合計ジャッジ時間 13,104 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define inf INT_MAX
#define INF LLONG_MAX
#define ll long long
#define ull unsigned long long
#define M (int)(1e9+7)
#define P pair<int,int>
#define PLL pair<ll,ll>
#define FOR(i,m,n) for(int i=(int)m;i<(int)n;i++)
#define RFOR(i,m,n) for(int i=(int)m;i>=(int)n;i--)
#define rep(i,n) FOR(i,0,n)
#define rrep(i,n) RFOR(i,n,0)
#define all(a) a.begin(),a.end()
#define IN(a,n) rep(i,n){ cin>>a[i]; }
const int vx[4] = {0,1,0,-1};
const int vy[4] = {1,0,-1,0};
#define PI 3.14159265
#define F first
#define S second
#define PB push_back
#define EB emplace_back
#define int ll
#define vi vector<int>



template< typename T >
struct edge {
  int src, to;
  T cost;

  edge(int to, T cost) : src(-1), to(to), cost(cost) {}

  edge(int src, int to, T cost) : src(src), to(to), cost(cost) {}

  edge &operator=(const int &x) {
    to = x;
    return *this;
  }

  operator int() const { return to; }
};

template< typename T >
using Edges = vector< edge< T > >;
template< typename T >
using WG = vector< Edges< T > >;
using UG = vector< vector< int > >;
template< typename T >
using Matrix = vector< vector< T > >;

void dfs(int k,int p,UG es,int b[],int s){
  b[k]=s;
  for(int e:es[k]){
    if(e==p) continue;
    dfs(e,k,es,b,s);
  }

}

signed main(){
  cin.tie(0);
  ios::sync_with_stdio(false);

  int n,m,q;
  cin>>n>>m>>q;
  set<P> s;
  rep(i,m){
    int a,b;
    cin>>a>>b;
    a--;b--;
    s.insert(P(a,b));
  }

  vector<P> v(q);
  rep(i,q){
    cin>>v[i].F>>v[i].S;
    v[i].F--;v[i].S--;
    s.erase(P(v[i]));
  }

  UG es(n);

  for(P p:s){
    es[p.F].PB(p.S);
    es[p.S].PB(p.F);
  }

  int ans[110000]={};
  dfs(0,-1,es,ans,-1);


  rrep(i,q-1){
    if(ans[v[i].F]&&!ans[v[i].S]){
      dfs(v[i].S,-1,es,ans,i+1);
    }else if(!ans[v[i].F]&&ans[v[i].S]){
      dfs(v[i].F,-1,es,ans,i+1);
    }
    es[v[i].F].PB(v[i].S);
    es[v[i].S].PB(v[i].F);
  }

  FOR(i,1,n){
    cout<<ans[i]<<endl;
  }

  
}
0