POJ 2236 Wireless Network(並查集)

來源:互聯網
上載者:User

標籤:else   containe   space   size   ide   ext   action   print   text   

題目連結

cid=66964#problem/A">[kuangbin帶你飛]專題五 並查集 A - Wireless Network

題意

有n台損壞的電腦,現要將其逐台修複,且使其相互恢複通訊功能。若兩台電腦能相互連信。則有兩種情況。一是他們之間的距離小於d。二是他們能夠藉助都可到達的第三台已修複的電腦。給出全部電腦的座標位置,對其進行兩種可能的操作,O x表示修複第x台。S x y表示推斷x y之間是否能通訊,若能輸出SUCCESS,否則輸出FALL。

思路

用並查集來儲存電腦互相的連通情況。
每次修好電腦後,將它能夠通訊的電腦(距離滿足且已修好)與它進行連通。

代碼
#include<iostream>#include<stdio.h>#include<cstring>#include<cstdlib>#include<vector>#include<algorithm>#define LL long longusing namespace std;const int N = 1009;int x[N], y[N], fa[N];bool p[N];vector<int> v[N];int find(int x){    if(fa[x] == x)        return x;    return fa[x] = find(fa[x]);}int main(){    int n, d;    char s[2];    scanf("%d%d", &n, &d);    for(int i=1; i<=n; i++)    {        scanf("%d%d", &x[i], &y[i]);        fa[i] = i;    }    for(int i=1; i<=n; i++)        for(int j=i+1; j<=n; j++)        {            if(((x[i]-x[j])*(x[i]-x[j])+(y[i]-y[j])*(y[i]-y[j])) <= d*d)            {                v[j].push_back(i);                v[i].push_back(j);            }        }    while(~scanf("%s", s))    {        int a, b;        if(s[0] == ‘O‘)        {            scanf("%d", &a);            p[a] = true;            for(int i=0; i<v[a].size(); i++)                if(p[v[a][i]])                {                    b = find(v[a][i]);                    fa[b] = a;                }        }        else        {            scanf("%d%d", &a, &b);            int ta = find(a);            int tb = find(b);            if(ta == tb)                printf("SUCCESS\n");            else                printf("FAIL\n");        }    }    return 0;}

POJ 2236 Wireless Network(並查集)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.