zoukankan      html  css  js  c++  java
  • Wireless Network

    Wireless Network
    Time Limit: 10000MS Memory Limit: 65536K
    Total Submissions: 19626 Accepted: 8234

    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
    POJ Monthly,HQM
    并查集的应用,将可以连接在一起纳入一个集合,进行查找

    #include <iostream>
    #include <cmath>
    #include <map>
    #include <cstring>
    #include <cstdlib>
    #include <stdio.h>
    #include <string>
    #include <queue>
    #include <algorithm>
    #define LL long long
    using namespace std;
    
    const int INF = 0x3f3f3f3f;
    
    const int MAX = 1100;
    
    int pre[MAX];
    
    struct node
    {
        int x;
        int y;
    }a[MAX];
    
    int n,d;
    
    bool vis[MAX];
    
    int  Find(int x)
    {
        return pre[x]==x?x:pre[x]=Find(pre[x]);
    }
    
    int  Dis(node b,node c)//计算距离
    {
        return ((b.x-c.x)*(b.x-c.x)+(b.y-c.y)*(b.y-c.y));
    }
    
    int main()
    {
        char s[2];
        scanf("%d %d",&n,&d);
        for(int i=1;i<=n;i++)
        {
            pre[i]=i;
            scanf("%d %d",&a[i].x,&a[i].y);
        }
        int site;
    
        int u,v;
    
        memset(vis,false,sizeof(vis));
    
        while(~scanf("%s",s))
        {
            if(s[0]=='O')
            {
                scanf("%d",&site);
                vis[site]=true;
                 int y = Find(site);
                for(int i=1;i<=n;i++)
                {
                    if(vis[i]&&i!=site)
                    {
                        int x = Find(i);
                        if(x!=y&&d*d>=Dis(a[site],a[i]))//这里判断错,应该让两个根节点连接
                        {
                            pre[x] = y;
                        }
                    }
                }
            }
            else
            {
                scanf("%d %d",&u,&v);
                if(Find(u)==Find(v))
                {
    
                    printf("SUCCESS
    ");
                }
                else
                {
                    printf("FAIL
    ");
                }
            }
        }
        return 0;
    }
    
    
    
  • 相关阅读:
    Java Application Development(包括如何设置本地库)
    谈谈基于Kerberos的Windows Network Authentication
    在OpenSSL中添加自定义加密算法
    单点登录(SSO)的核心--kerberos身份认证协议技术参考(一)
    WindowsXP 系统登陆原理及其验证机制概述
    单点登录(SSO)的核心--kerberos身份认证协议技术参考(二)
    单点登录(SSO)的核心--kerberos身份认证协议技术参考(三)
    windows登录过程 winlogon/gina/Kerberos/kdc
    [C++]static全局变量/全局变量,static函数/普通函数,函数中static变量/函数中的变量,类中的static成员变量/普通类成员变量
    郑重推荐一款软件: http tunnel
  • 原文地址:https://www.cnblogs.com/juechen/p/5256003.html
Copyright © 2011-2022 走看看