結果

問題 No.416 旅行会社
ユーザー autumn-eelautumn-eel
提出日時 2017-12-15 21:26:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 541 ms / 4,000 ms
コード長 1,109 bytes
コンパイル時間 1,989 ms
コンパイル使用メモリ 178,380 KB
実行使用メモリ 27,176 KB
最終ジャッジ日時 2024-12-14 20:26:12
合計ジャッジ時間 7,849 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
24,960 KB
testcase_01 AC 6 ms
10,624 KB
testcase_02 AC 7 ms
10,624 KB
testcase_03 AC 6 ms
10,624 KB
testcase_04 AC 6 ms
10,624 KB
testcase_05 AC 7 ms
10,624 KB
testcase_06 AC 6 ms
10,624 KB
testcase_07 AC 7 ms
10,880 KB
testcase_08 AC 11 ms
10,880 KB
testcase_09 AC 32 ms
12,160 KB
testcase_10 AC 147 ms
24,320 KB
testcase_11 AC 136 ms
21,760 KB
testcase_12 AC 139 ms
21,888 KB
testcase_13 AC 116 ms
23,040 KB
testcase_14 AC 541 ms
26,112 KB
testcase_15 AC 501 ms
26,632 KB
testcase_16 AC 506 ms
24,704 KB
testcase_17 AC 525 ms
24,796 KB
testcase_18 AC 530 ms
25,088 KB
testcase_19 AC 457 ms
27,176 KB
testcase_20 AC 453 ms
27,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n)for(int i=0;i<(n);i++)
using namespace std;
typedef pair<int,int>P;

int par[100000];

void init(int n){
	rep(i,n)par[i]=i;
}
int find(int x){
	if(par[x]==x)return x;
	return par[x]=find(par[x]);
}
void unite(int x,int y){
	x=find(x);y=find(y);
	if(x==y)return;
	par[x]=y;
}

int a[200000],b[200000],c[200000],d[200000];
int l[200000],r[200000];
vector<int>v[300000];

int main(){
	int n,m,q;scanf("%d%d%d",&n,&m,&q);
	set<P>se;
	rep(i,m){
		scanf("%d%d",&a[i],&b[i]);a[i]--;b[i]--;
		se.insert(P(a[i],b[i]));
	}
	rep(i,q){
		scanf("%d%d",&c[i],&d[i]);c[i]--;d[i]--;
		se.erase(P(c[i],d[i]));
	}
	rep(i,n){
		l[i]=0;r[i]=q;
	}
	rep(i,20){
		rep(j,q+1)v[j].clear();
		rep(j,n){
			int t=(l[j]+r[j])/2;
			v[t].push_back(j);
		}
		init(n);
		for(auto p:se)unite(p.first,p.second);
		for(int j=q-1;j>=0;j--){
			for(int k:v[j]){
				if(find(k)==find(0))l[k]=j+1;
				else r[k]=j;
			}
			if(j)unite(c[j],d[j]);
		}
	}
	init(n);
	rep(i,m)unite(a[i],b[i]);
	rep(i,n-1){
		if(l[i+1]==q)puts("-1");
		else if(find(i+1)!=find(0))puts("0");
		else printf("%d\n",l[i+1]+1);
	}
}
0