結果

問題 No.416 旅行会社
ユーザー vjudge1vjudge1
提出日時 2024-12-22 16:39:48
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 959 bytes
コンパイル時間 1,857 ms
コンパイル使用メモリ 178,532 KB
実行使用メモリ 31,616 KB
最終ジャッジ日時 2024-12-22 16:40:28
合計ジャッジ時間 39,835 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
19,712 KB
testcase_01 AC 5 ms
17,244 KB
testcase_02 WA -
testcase_03 AC 4 ms
17,056 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 104 ms
31,616 KB
testcase_11 AC 100 ms
15,196 KB
testcase_12 AC 106 ms
14,464 KB
testcase_13 AC 82 ms
14,464 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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])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';
}
0