POJ 2236 Wireless Network 简单并查集

         一道简单的并查集,稍微麻烦了点,注意一下细节就可以了,没什么难度。。题目:

Wireless Network
Time Limit: 10000MS   Memory Limit: 65536K
Total Submissions: 11457   Accepted: 4884

Description

An earthquake takes place in Southeast Asia. The ACM (Asia Cooperated Medical team) have set up a wireless network with the lap computers, but an unexpected aftershock attacked, all computers in the network were all broken. The computers are repaired one by one, and the network gradually began to work again. Because of the hardware restricts, each computer can only directly communicate with the computers that are not farther than d meters from it. But every computer can be regarded as the intermediary of the communication between two other computers, that is to say computer A and computer B can communicate if computer A and computer B can communicate directly or there is a computer C that can communicate with both A and B. 

In the process of repairing the network, workers can take two kinds of operations at every moment, repairing a computer, or testing if two computers can communicate. Your job is to answer all the testing operations. 

Input

The first line contains two integers N and d (1 <= N <= 1001, 0 <= d <= 20000). Here N is the number of computers, which are numbered from 1 to N, and D is the maximum distance two computers can communicate directly. In the next N lines, each contains two integers xi, yi (0 <= xi, yi <= 10000), which is the coordinate of N computers. From the (N+1)-th line to the end of input, there are operations, which are carried out one by one. Each line contains an operation in one of following two formats: 
1. "O p" (1 <= p <= N), which means repairing computer p. 
2. "S p q" (1 <= p, q <= N), which means testing whether computer p and q can communicate. 

The input will not exceed 300000 lines. 

Output

For each Testing operation, print "SUCCESS" if the two computers can communicate, or "FAIL" if not.

Sample Input

4 1
0 1
0 2
0 3
0 4
O 1
O 2
O 4
S 1 4
O 3
S 1 4

Sample Output

FAIL
SUCCESS
ac代码:

#include 
#include 
#include 
#include 
#include 
using namespace std;
const int N=1010;
int father[N];
bool flag[N];
vector  vv[1010];
int n,d;
struct point{
	int x,y;
}pp[N];
double fun(int x){
	return x*x*1.0;
}
void init(){
	memset(vv,0,sizeof(vv));
	for(int i=1;i<=n;++i){
		father[i]=i;
		flag[i]=false;
		for(int j=1;j<=n;++j){
		  if(i==j)continue;
		  double x=sqrt( fun(pp[j].x-pp[i].x)+fun(pp[j].y-pp[i].y) );
		  if(x<=d)
			  vv[i].push_back(j);
		}
	}
}
int find(int x){
	if(x!=father[x])
		father[x]=find(father[x]);
	return father[x];
}
void Union_Set(int x,int y){
	int rootx=find(x);
	int rooty=find(y);
	if(rooty!=rootx)
		father[rooty]=rootx;
}
int main(){
	freopen("1.txt","r",stdin);
	while(~scanf("%d%d",&n,&d)){
		for(int i=1;i<=n;++i){
			scanf("%d%d",&pp[i].x,&pp[i].y);
		}
		init();
		char ss[2];
		int x,y;
		while(~scanf("%s",ss)){
		  //scanf("%s",ss);
		  if(ss[0]=='O'){
		    scanf("%d",&x);
			flag[x]=true;
			for(int j=0;j


你可能感兴趣的:(并查集,network,testing,each,distance,input,fun)