結果
問題 | No.416 旅行会社 |
ユーザー | vjudge1 |
提出日時 | 2024-12-22 16:41:47 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 961 bytes |
コンパイル時間 | 1,758 ms |
コンパイル使用メモリ | 176,792 KB |
実行使用メモリ | 33,408 KB |
最終ジャッジ日時 | 2024-12-22 16:42:28 |
合計ジャッジ時間 | 38,896 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
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 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; const int N=200005; int n,m,q,u[N],v[N],fa[N],ans[N]; set<pair<int,int> >s; vector<int>son[N]; int find(int u){return fa[u]==u?u:find(fa[u]);} int main() { ios::sync_with_stdio(0); cin.tie(0);cout.tie(0); cin>>n>>m>>q; for(int i=1;i<=n;i++)fa[i]=i; for(int i=1,u,v;i<=m;i++) { cin>>u>>v; s.insert(make_pair(u,v)); } for(int i=1;i<=q;i++) { cin>>u[i]>>v[i]; s.erase(make_pair(u[i],v[i])); } for(pair<int,int> e:s)fa[e.first]=e.second; for(int i=1;i<=n;i++)son[find(i)].push_back(i); for(int i=2;i<=n;i++)if(find(1)==find(i))ans[i]=-1; for(int i=q,fx,fy;i;i--) { fx=find(u[i]);fy=find(v[i]); if(fx==find(1))for(int u:son[fy])if(ans[u]>0)ans[u]=i; if(fy==find(1))for(int u:son[fx])if(ans[u]>0)ans[u]=i; if(fx==fy)continue; if(son[fx].size()<son[fy].size())swap(fx,fy); for(int u:son[fy])son[fx].push_back(u); son[fy].clear();fa[fy]=fx; } for(int i=2;i<=n;i++)cout<<ans[i]<<'\n'; }