結果
問題 | No.416 旅行会社 |
ユーザー | vjudge1 |
提出日時 | 2024-12-22 16:50:27 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 960 bytes |
コンパイル時間 | 2,010 ms |
コンパイル使用メモリ | 176,848 KB |
実行使用メモリ | 71,680 KB |
最終ジャッジ日時 | 2024-12-22 16:52:22 |
合計ジャッジ時間 | 39,394 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 102 ms
71,680 KB |
testcase_01 | AC | 23 ms
32,000 KB |
testcase_02 | WA | - |
testcase_03 | AC | 22 ms
32,256 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 129 ms
38,656 KB |
testcase_11 | AC | 128 ms
33,280 KB |
testcase_12 | AC | 132 ms
33,280 KB |
testcase_13 | AC | 110 ms
33,152 KB |
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=1000005; 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])ans[u]=i; if(fy==find(1))for(int u:son[fx])if(!ans[u])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'; }