結果

問題 No.416 旅行会社
ユーザー vjudge1vjudge1
提出日時 2024-12-22 17:01:19
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,040 bytes
コンパイル時間 1,875 ms
コンパイル使用メモリ 177,236 KB
実行使用メモリ 71,680 KB
最終ジャッジ日時 2024-12-22 17:02:00
合計ジャッジ時間 39,321 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
71,680 KB
testcase_01 AC 20 ms
32,128 KB
testcase_02 WA -
testcase_03 AC 18 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 124 ms
38,656 KB
testcase_11 AC 118 ms
33,280 KB
testcase_12 AC 118 ms
33,280 KB
testcase_13 AC 101 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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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=1;i<=n;i++)if(find(i)!=i)son[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();son[fy].push_back(fy);fa[fy]=fx;
	}
	for(int i=2;i<=n;i++)cout<<ans[i]<<'\n';
}
0