• POJ 2236 Wireless Network


    Wireless Network
    Time Limit: 10000MS   Memory Limit: 65536K
    Total Submissions: 13679   Accepted: 5796

    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
    

    Source

     
    并查集
    #include<stdio.h>
    #include<iostream>
    using namespace std;
    struct st
    {
        int x;
        int y;
    }zb[1003];
    int g[1003][1003];
    int visit[1003];
    int f[1003];
    int rank[1003];
    void makeset(int n,int distance)
    {
        int i,j;
        for(i=1;i<=n;i++)
        {
            rank[i]=0;
            f[i]=i;
            visit[i]=0;
        }
        for(i=1;i<=n;i++)
            for(j=1;j<=n;j++)
                g[i][j]=0;
        distance=distance*distance;
        for(i=1;i<=n;i++)
        {
            for(j=1;j<=n;j++)
            {
                if( (zb[i].x-zb[j].x)*(zb[i].x-zb[j].x)+(zb[i].y-zb[j].y)*(zb[i].y-zb[j].y) <= distance )
                {
                    g[i][j]=1;
                }
            }
        }
    }
    int find(int x)
    {
        int r=x,i;
        while(x!=f[x])
            x=f[x];
        while(r!=x)
        {
            i=f[r];
            f[r]=x;
            r=i;
        }
        return x;
    }
    void Union(int x,int y)
    {
        int x1,y1;
        x1=find(x);
        y1=find(y);
        if(x1==y1)
            return ;
        else 
        {
            if(rank[x1]>rank[y1])
            {
                f[y1]=x1;
            }
            else 
            {
                if(rank[y1]==rank[x1])
                    rank[y1]++;
                f[x1]=y1;
            }
        }
    }
    void xiufu(int n,int x)
    {
        int i,j,k;
        for(i=1;i<=n;i++)
            if(i!=x)
            {
                if(visit[i]==1 && g[x][i]==1)
                {
                    Union(x,i);
                }
            }
    }
    int main()
    {
        int i,j,k,n,m,t,distance,x,y;
        char c[5];
        while(scanf("%d%d",&n,&distance)>0)
        {
            for(i=1;i<=n;i++)
            {
                scanf("%d%d",&zb[i].x,&zb[i].y);
            }
            makeset(n,distance);
            while(cin>>c) //here notice
            {
                if(c[0]=='O')
                {
                    scanf("%d",&x);
                    visit[x]=1;
                    xiufu(n,x);
                }
                if(c[0]=='S')
                {
                    scanf("%d%d",&x,&y);
                    x=find(x);
                    y=find(y);
                    if(x==y)
                        printf("SUCCESS
    ");
                    else
                        printf("FAIL
    ");
                }
            }
        }
        return 0;
    }
  • 相关阅读:
    JQuery 判断某个属性是否存在 hasAttr
    微信支付开发-Senparc.Weixin.MP详解
    c# 两个数组比较,将重复部分去掉,返回不重复部分
    String.Format数字格式化输出 {0:N2} {0:D2} {0:C2
    asp.net 时间比较,常用于在某段时间进行操作
    关于C#正则表达式MatchCollection类的总结,正则表达式的应用
    开发错误11:Configuration with name ‘default’ not found
    Android新旧版本Notification
    Okio 1.9简单入门
    Android  PNG透明图片转JPG格式背景变黑
  • 原文地址:https://www.cnblogs.com/tom987690183/p/3161130.html
Copyright © 2020-2023  润新知