poj 2236 (집합)
Time Limit: 10000MS
Memory Limit: 65536K
Total Submissions: 13721
Accepted: 5817
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
, ready[] , d, ; 。 , ready[]
#include<iostream>
#include<cstdio>
#include<cmath>
using namespace std;
const int MAX=1010;
int par[MAX];
int ready[MAX];
int n;
double d;
struct Point
{
int x,y;
}point[MAX];
int Get_par(int a)
// a
{
if(par[a]==a)
return par[a];
par[a]=Get_par(par[a]);
return par[a];
}
void Merge(int a,int b)
// a,b
{
int pa,pb;
pa=Get_par(a);
pb=Get_par(b);
if(pa!=pb)
par[pb]=pa;
}
double Distance(Point a,Point b)
{
return sqrt(1.0*(a.x-b.x)*(a.x-b.x)+1.0*(a.y-b.y)*(a.y-b.y));
}
int main()
{
int i,a,b,Temp_Count;
char cmd[5];
scanf("%d%lf",&n,&d);
for(i=1;i<=n;i++)
{
scanf("%d%d",&point[i].x,&point[i].y);
par[i]=i;
}
Temp_Count=1;
while(~scanf("%s%d",cmd,&a))
{
if(cmd[0]=='O')
{
for(i=1;i<Temp_Count;i++)
{
if(Distance(point[ready[i]],point[a])<=d)
{
Merge(ready[i],a);
}
}
ready[Temp_Count++]=a;
}
else
{
scanf("%d",&b);
if(Get_par(a)==Get_par(b))
printf("SUCCESS
");
else
printf("FAIL
");
}
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.