結果

問題 No.416 旅行会社
ユーザー tashikanitashikani
提出日時 2016-08-26 23:32:28
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 2,501 bytes
コンパイル時間 1,136 ms
コンパイル使用メモリ 109,928 KB
実行使用メモリ 24,248 KB
最終ジャッジ日時 2024-04-25 21:52:36
合計ジャッジ時間 11,836 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <vector>
#include <list>
#include <map>
#include <set>
#include <deque>
#include <stack>
#include <queue>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <cctype>
#include <string>
#include <cstring>
#include <ctime>

using namespace std;

inline int toInt(string s) {int v; istringstream sin(s);sin>>v;return v;}
template<class T> inline string toString(T x) {ostringstream sout;sout<<x;return sout.str();}

typedef vector<int> VI;
typedef vector<VI> VVI;
typedef vector<string> VS;
typedef pair<int, int> PII;
typedef long long LL;

#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define REP(i,n)  FOR(i,0,n)

#define MP make_pair
#define MT make_tuple
#define EACH(i,c) for(auto i: c)
#define SORT(c) sort((c).begin(),(c).end())

#define ALL(a)  (a).begin(),(a).end()
#define RALL(a) (a).rbegin(), (a).rend()

const double EPS = 1e-10;
const double PI  = acos(-1.0);

#define dump(x)  cerr << #x << " = " << (x) << endl;
#define debug(x) cerr << #x << " = " << (x) << " (L" << __LINE__ << ")" << " " << __FILE__ << endl;

VI par, ran;

void init(int n){
	par = VI(n);
	ran = VI(n, 0);
	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;

	if(ran[x] < ran[y]){
		par[x] = y;
	}
	else{
		par[y] = x;
		if(ran[x] == ran[y]) ran[x]++;
	}
}

bool same(int x, int y){
	return find(x) == find(y);
}

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);

	int N, M, Q;
	cin >> N >> M >> Q;

	set<PII> s;

	vector<PII> AB(M);
	REP(i, M){
		int A, B;
		cin >> A >> B;
		AB[i] = MP(A, B);
		s.insert(MP(A, B));
	}

	vector<PII> CD(Q);
	REP(i, Q){
		int C, D;
		cin >> C >> D;
		CD[i] = MP(C, D);
		s.erase(MP(C,D));
	}

	VI ans(N + 1, 0);

	init(N + 1);

	EACH(p, s) unite(p.first, p.second);

	set<int> rest;
	FOR(i, 1, N + 1){
		if(same(1, i)){
			ans[i] = -1;
		}
		else{
			rest.insert(i);
		}
	}

	for(int i = Q - 1; i >= 0; i--){
		unite(CD[i].first, CD[i].second);
		if((ans[CD[i].first] == 0 && same(1, CD[i].first)) || (ans[CD[i].second] == 0 && same(1, CD[i].second))){
			VI done;
			EACH(r, rest){
				if(same(1, r)){
					ans[r] = i + 1;
					done.push_back(r);
				}
			}
			EACH(d, done) rest.erase(d);
		}
	}

	FOR(i, 2, N + 1){
		cout << ans[i] << endl;
	}



	return 0;
}
0