• 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;
    }
  • 相关阅读:
    Android动画 interpolator的用法
    ListView的addAll方法
    界面切换动画
    ListView的setSelectionFromTop()方法与setSelection()方法的联系
    new总结
    linux中进程控制
    linux设备模型
    如何将驱动加入内核
    linux缓冲的概念fopen /open,read/write和fread/fwrite区别
    点云的滤波
  • 原文地址:https://www.cnblogs.com/tom987690183/p/3161130.html
Copyright © 2020-2023  润新知