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;
    }
  • 相关阅读:
    perl 解json数组
    华为云3大体系化防护实践,保障金融业云上数据安全
    弹性文件服务解密 -- 块存储、文件存储、对象存储的区别
    【nodejs原理&源码赏析(6)】深度剖析cluster模块源码与node.js多进程
    云+AI+5G时代,华为云已准备好多元化云服务架构
    高能街访 | 为什么他们都纷纷为深圳打Call?
    Angularjs进阶笔记(2)—自定义指令中的数据绑定
    Angularjs进阶笔记(1)—不同类型的双向数据绑定
    ServiceComb java-chassis和CSE java-chassis的区别
    使用inspector功能查看和管理契约
  • 原文地址:https://www.cnblogs.com/tom987690183/p/3161130.html
Copyright © 2011-2022 走看看