poj2236(并查集)

/*
translation:
	多个电脑连成一个网络,给出修复和查询两种操作。输出每次查询两台电脑是否能够通信的结果
solution:
	并查集简单应用即可
note:
	注意输入。
date:
	2016.10.17
*/
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <vector>

using namespace std;
const int maxn = 1000 + 5;

struct Point
{
	int x, y;
	Point(int x_, int y_):x(x_),y(y_){}
	Point(){}
} p[maxn];

int par[maxn], high[maxn];
int n, d;
bool isGood[maxn];
vector<int> G[maxn];

void init()
{
	for(int i = 0; i <= n; i++)	G[i].clear();
	memset(isGood, 0, sizeof(isGood));
	for(int i = 1; i <= n; i++)
	{
		par[i] = i;
		high[i] = 0;
	}
}

int getRoot(int x)
{
	return par[x] == x ? x : par[x] = getRoot(par[x]);
}

void unite(int x, int y)
{
	x = getRoot(x);
	y = getRoot(y);
	if(x == y)	return;

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

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

int getDist(int a, int b)
{
	return (p[a].x-p[b].x)*(p[a].x-p[b].x) + (p[a].y-p[b].y)*(p[a].y-p[b].y);
}

int main()
{
	//freopen("in.txt", "r", stdin);
    while(~scanf("%d%d", &n, &d))
	{
		init();
		for(int i = 1; i <= n; i++)	scanf("%d%d", &p[i].x, &p[i].y);

		char op;
		int p, q;
		while(cin >> op)
		{
			if(op == 'O')
			{
				cin >> p;
				isGood[p] = true;
				for(int i = 1; i <= n; i++)
					if(isGood[i] && i != p && getDist(p, i) <= d*d)
						unite(p, i);

			}
			else
			{
				cin >> p >> q;
				if(same(p, q))	cout << "SUCCESS" << endl;
				else			cout << "FAIL" << endl;
			}
		}
	}
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值