POJ 2236 - Wireless Network(并查集)

来源:互联网 发布:ubuntu安装exe 编辑:程序博客网 时间:2024/06/02 07:01

Wireless Network
Time Limit: 10000MS Memory Limit: 65536K
Total Submissions: 24536 Accepted: 10239
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

题意:
有n个电脑,O操作是把这个电脑修复,S是查询a和b电脑是否连通.
连通分为两种:
1.直接连通,这两个电脑是好的,同时他们的距离小于等于d.
2.间接连通,他们在一个网络里.

解题思路:
并查集裸题,符合条件的放到一个并查集中,查询的时候看祖先是不是一个.

AC代码:

#include<stdio.h>#include<math.h>#include<iostream>#include<string.h>using namespace std;const int maxn = 1005;struct node{int x,y;}cmp[maxn];bool book[maxn];int f[maxn];int n,d;int Find(int pos){return pos == f[pos]?pos:f[pos] = Find(f[pos]);}bool dis(int a,int b){    int x = cmp[a].x-cmp[b].x;    int y = cmp[a].y-cmp[b].y;    if(x*x+y*y<=d*d)  return 1;    return 0;}int main(){    cin>>n>>d;    for(int i = 1;i <= n;i++)   cin>>cmp[i].x>>cmp[i].y,f[i] = i;    char ch;    while(cin>>ch)    {        if(ch == 'O')        {            int op;            cin>>op;            book[op] = 1;            for(int i = 1;i <= n;i++)                   if(i != op && book[i] && dis(i,op))  f[Find(op)] = Find(i);        }        else if(ch == 'S')        {            int a;            int b;            cin>>a>>b;            if(Find(a) == Find(b))  cout<<"SUCCESS"<<endl;            else                    cout<<"FAIL"<<endl;        }    }    return 0;}
0 0