結果
問題 | No.416 旅行会社 |
ユーザー | mint6421 |
提出日時 | 2019-08-21 23:13:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,938 bytes |
コンパイル時間 | 1,839 ms |
コンパイル使用メモリ | 180,340 KB |
実行使用メモリ | 816,256 KB |
最終ジャッジ日時 | 2024-10-10 04:13:21 |
合計ジャッジ時間 | 4,403 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 206 ms
9,728 KB |
testcase_01 | MLE | - |
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 | -- | - |
ソースコード
#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 > >; UG es; int ans[210000]; set<P> s; vector<P> v; void dfs(int k,int p,int x){ ans[k]=x; for(int e:es[k]){ if(e==p) continue; dfs(e,k,x); } } signed main(){ cin.tie(0); ios::sync_with_stdio(false); int n,m,q; cin>>n>>m>>q; rep(i,m){ int a,b; cin>>a>>b; a--;b--; s.insert(P(a,b)); } v = vector<P>(q); rep(i,q){ cin>>v[i].F>>v[i].S; v[i].F--;v[i].S--; s.erase(P(v[i])); } es=UG(n); for(P p:s){ es[p.F].PB(p.S); es[p.S].PB(p.F); } dfs(0,-1,-1); rrep(i,q-1){ if(ans[v[i].F]&&!ans[v[i].S]){ dfs(v[i].S,-1,i+1); }else if(!ans[v[i].F]&&ans[v[i].S]){ dfs(v[i].F,-1,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; } }