简单并查集之Wireless Network

来源:互联网 发布:广州男装网络批发 编辑:程序博客网 时间:2024/04/30 02:20

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 10 10 20 30 4O 1O 2O 4S 1 4O 3S 1 4

Sample Output

FAIL

SUCCESS

思路,遇到O就遍历一遍看能不能够得着,能的话合并,最后遇到S直接查啊a,b的父节点是不是同一个即可

代码如下

#include<stdio.h>#include<cmath>#include<algorithm>using namespace std;#include<math.h>const double eps=0.000001;int n;typedef struct{    double xi,yi;} node;node q[1005];int counti[1005];int f[1005],num;int find(int x){    int px;    if(x!=f[x])    {        f[x]=find(f[x]);    }    return f[x];}double dis(node a,node b){    double s;    s=sqrt((a.xi-b.xi)*(a.xi-b.xi)+(a.yi-b.yi)*(a.yi-b.yi));    return s;}void unio(int x,int y){    int fx=find(x);    int fy=find(y);    if(fx!=fy)        f[fy]=fx;}void inti(){    for(int i=1; i<=1005; i++)        f[i]=i;    num=0;}int main(){    double d;    int i;    while(scanf("%d%lf",&n,&d)!=EOF)    {        inti();        for(i=1; i<=n; i++)            scanf("%lf%lf",&q[i].xi,&q[i].yi);        char op[2];        while(scanf("%s",op)!=EOF)        {            int x;            if(op[0]=='O')            {                scanf("%d",&x);                for(i=0; i<num; i++)                {                    if(dis(q[counti[i]],q[x])<=d+eps)                        unio(counti[i],x);                }                counti[num++]=x;            }            if(op[0]=='S')            {                int a,b;                scanf("%d%d",&a,&b);                {                    if(find(a)==find(b))                        printf("SUCCESS\n");                    else  printf("FAIL\n");                }            }        }    }}




0 0
原创粉丝点击