poj 2236 Wireless Network 之幷查集

来源:互联网 发布:清理上网痕迹软件 编辑:程序博客网 时间:2024/05/21 17:16

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 10 2 //这些数字代表坐标0 30 4O 1   //大写字母O,代表修复,后面的数字对应修复的电脑号O 2O 4S 1 4 //大写字母S,代表查询两台之间能否连通O 3S 1 4

Sample Output

FAILSUCCESS

Source

 

#include<stdio.h>#include<math.h>#include<string.h>#include<iostream>using namespace std;int p[1010];int d;struct inin{int x;int y;bool con;}boy[1010];int find(int x){if(p[x]!=x)  return p[x]=find(p[x]);return x;}bool dis(inin a,inin b){if(sqrt((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y)*1.0)<=(double)d) return true;return false;} void Union(int a,int b){int f1=find(a);int f2=find(b);if(f1!=f2)  p[f1]=f2;}int main(){int N;int i,j;int num;int num1,num2;char op;scanf("%d%d",&N,&d);for(i=1;i<=N;i++){scanf("%d%d",&boy[i].x,&boy[i].y);boy[i].con=false;}for(j=0;j<=N;j++) p[j]=j;while(cin>>op){if(op=='O'){scanf("%d",&num);boy[num].con=true;for(i=1;i<=N;i++){if(i==num) continue;if(dis(boy[num],boy[i])&&boy[i].con==true)Union(i,num);}}else{scanf("%d%d",&num1,&num2);  if(find(num1)==find(num2))    printf("SUCCESS\n");  else    printf("FAIL\n");}}return 0;}


 

 

0 0
原创粉丝点击