結果

問題 No.416 旅行会社
ユーザー hirokazu1020hirokazu1020
提出日時 2016-08-27 02:45:08
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 425 ms / 4,000 ms
コード長 1,967 bytes
コンパイル時間 1,441 ms
コンパイル使用メモリ 106,932 KB
実行使用メモリ 18,048 KB
最終ジャッジ日時 2024-05-08 15:03:47
合計ジャッジ時間 6,461 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 202 ms
12,416 KB
testcase_01 AC 3 ms
5,760 KB
testcase_02 AC 3 ms
5,760 KB
testcase_03 AC 3 ms
5,888 KB
testcase_04 AC 3 ms
5,760 KB
testcase_05 AC 3 ms
5,760 KB
testcase_06 AC 3 ms
5,760 KB
testcase_07 AC 4 ms
5,760 KB
testcase_08 AC 8 ms
5,888 KB
testcase_09 AC 26 ms
6,528 KB
testcase_10 AC 217 ms
12,288 KB
testcase_11 AC 212 ms
12,356 KB
testcase_12 AC 215 ms
12,416 KB
testcase_13 AC 200 ms
12,416 KB
testcase_14 AC 406 ms
17,988 KB
testcase_15 AC 425 ms
18,048 KB
testcase_16 AC 404 ms
17,856 KB
testcase_17 AC 404 ms
17,920 KB
testcase_18 AC 394 ms
17,988 KB
testcase_19 AC 300 ms
14,976 KB
testcase_20 AC 297 ms
14,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
#include<sstream>
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<climits>
#include<cmath>
#include<string>
#include<vector>
#include<set>
#include<map>
#include<queue>
#include<numeric>
#include<functional>
#include<algorithm>
#include<bitset>
#include<tuple>
#include<unordered_set>
#include<random>
using namespace std;
#define INF (1<<29)
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define all(v) v.begin(),v.end()
#define uniq(v) v.erase(unique(all(v)),v.end())


#define MAX_N 100000
int par[MAX_N];
int _rank[MAX_N];
vector<int> child[MAX_N];
bool can[MAX_N];



void init(int n) {
	for (int i = 0; i<n; i++) {
		par[i] = i;
		_rank[i] = 0;
	}
	can[0] = true;
}
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;

	if (_rank[x]<_rank[y]) {
		par[x] = y;
		child[y].push_back(x);
	}
	else {
		par[y] = x;
		if (_rank[x] == _rank[y])_rank[x]++;
		child[x].push_back(y);
	}


	if (can[x])can[y] = true;
	else if (can[y])can[x] = true;
}
bool same(int x, int y) {
	return find(x) == find(y);
}


int x[200000], y[200000];
int ans[100000];


void no(int u,int t) {
	ans[u] = t;
	for (int v : child[u]) {
		no(v, t);
	}
}





int main() {
	ios::sync_with_stdio(0);
	cin.tie(0);
	int n, m, q;
	cin >> n >> m >> q;
	set<pair<int, int>> e;
	rep(i, m) {
		int a, b;
		cin >> a >> b;
		a--; b--;
		e.emplace(a, b);
	}
	rep(i, q) {
		cin >> x[i] >> y[i];
		x[i]--; y[i]--;
		e.erase(make_pair(x[i], y[i]));
	}
	init(n);
	for (auto p : e) {
		unite(p.first, p.second);
	}
	rep(i, n) {
		if (can[find(i)])ans[i] = -1;
	}
	for (int i = q - 1; i >= 0; i--) {
		if (!same(x[i], y[i])) {
			if (can[find(x[i])]) {
				no(find(y[i]), i + 1);
			}
			else if (can[find(y[i])]) {
				no(find(x[i]), i + 1);
			}
			unite(x[i], y[i]);
		}
	}
	for (int i = 1; i<n; i++) {
		cout << ans[i] << endl;
	}
	return 0;
}
0