結果

問題 No.416 旅行会社
ユーザー mbanmban
提出日時 2017-04-20 22:40:06
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 617 ms / 4,000 ms
コード長 1,547 bytes
コンパイル時間 958 ms
コンパイル使用メモリ 83,964 KB
実行使用メモリ 26,704 KB
最終ジャッジ日時 2024-12-14 20:23:49
合計ジャッジ時間 8,464 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 296 ms
19,868 KB
testcase_01 AC 4 ms
9,296 KB
testcase_02 AC 4 ms
8,944 KB
testcase_03 AC 4 ms
8,124 KB
testcase_04 AC 4 ms
8,328 KB
testcase_05 AC 5 ms
9,444 KB
testcase_06 AC 4 ms
9,464 KB
testcase_07 AC 5 ms
8,448 KB
testcase_08 AC 10 ms
9,440 KB
testcase_09 AC 36 ms
10,068 KB
testcase_10 AC 329 ms
19,832 KB
testcase_11 AC 325 ms
19,896 KB
testcase_12 AC 331 ms
19,816 KB
testcase_13 AC 298 ms
19,844 KB
testcase_14 AC 617 ms
26,620 KB
testcase_15 AC 606 ms
26,540 KB
testcase_16 AC 602 ms
26,680 KB
testcase_17 AC 613 ms
26,680 KB
testcase_18 AC 608 ms
26,704 KB
testcase_19 AC 425 ms
23,360 KB
testcase_20 AC 448 ms
23,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<map>
#include<vector>

using namespace std;

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


int n, m, q, zero = 0;
vector<int>v[100000];

pair<int,int> ab[200000], cd[200000];
map<pair<int,int>, bool>mp;

int par[100000], r[100000], ans[100000];

int root(int a) {
	if (par[a] == a)return a;
	else return root(par[a]);
}

void uni(int a, int b, int c) {
	a = root(a);
	b = root(b);
	if (a != b) {
		if (r[a] < r[b]) {

			for (int i : v[a]) {
				v[b].push_back(i);
				if (zero == b) {
					if(ans[i]==0)
					ans[i] = c;
				}
			}
			if (zero == a) {
				for (int i : v[b]) {
					if (ans[i] == 0)
					ans[i] = c;
				}
				zero = b;
			}
			par[a] = b;
		}
		else {
			for (int i : v[b]) {
				v[a].push_back(i);
				if (zero == a) {
					if (ans[i] == 0)
					ans[i] = c;
				}
			}
			par[b] = a;
			if (zero == b) {
				for (int i : v[a]) {
					if (ans[i] == 0)
					ans[i] = c;
				}
				zero = a;
			}
			if (r[a] == r[b])r[a]++;
		}
	}
}
void uni(pair<int,int> b, int c) {
	uni(b.first, b.second, c);
}



int main() {
	cin >> n >> m >> q;
	REP(i, m) {
		int a, b;
		cin >> a >> b;
		ab[i].first = a - 1;
		ab[i].second = b - 1;
	}
	REP(i, q) {
		int a, b;
		cin >> a >> b;
		cd[i].first = a - 1;
		cd[i].second = b - 1;
		mp[cd[i]] = true;
	}
	REP(i, n) {
		par[i] = i;
		r[i] = 0;
		v[i].push_back(i);
		ans[i] = 0;
	}
	REP(i, m) {
		if (!mp[ab[i]]) {
			uni(ab[i], -1);
		}
	}
	for (int i = q - 1; i >= 0; i--) {
		uni(cd[i], i + 1);
	}

	for (int i = 1; i < n; i++) {
		cout << ans[i] << endl;
	}

	return 0;
}
0