zoukankan      html  css  js  c++  java
  • 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;
    }
  • 相关阅读:
    easyUI的汇总列,在前端生成
    return返回两个三元表达式的和,返回不正确,同样要注意在JavaScript中,也是如此
    清除浮动有哪些方式?比较好的方式是哪一种?
    浏览器重置样式
    MUI框架的缩写输入
    会自动消失的提示信息
    JSON.stringify转化报错
    Jquery on方法绑定事件后执行多次
    属性索引选择元素
    字符串赋值数字时的问题
  • 原文地址:https://www.cnblogs.com/tom987690183/p/3161130.html
Copyright © 2011-2022 走看看