• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
ACM s1124yy
守りたいものが 強くさせること
博客园    首页    新随笔    联系   管理     

POJ 2236 Wireless Network(并查集)

解题思路:这是并查集的应用,如果是O就合并,else就查询,需要注意的是join有个条件,就是在d的距离之内才可以!!!

AC代码:

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;

#define N 1110

int d;
bool used[N];
struct node
{
    int pre,x,y;
}p[N];
int find(int x)
{
    return x==p[x].pre?x:find(p[x].pre);
}
void join(const node p1,const node p2)
{
    int root1,root2;
    root1=find(p1.pre);
    root2=find(p2.pre);
    if (root1!=root2)
    {
        if ((p1.x-p2.x)*(p1.x-p2.x)+(p1.y-p2.y)*(p1.y-p2.y)<=d*d)
        {
            p[root2].pre=root1;
        }
    }
}
int main()
{
    int num;
    int ok;
    int from,to;
    cin>>num>>d;
    for (int i=1;i<=num;i++)
    {
        p[i].pre=i;
    }
    memset(used,0,sizeof(used));
    for (int i=1;i<=num;i++)
    {
        cin>>p[i].x>>p[i].y;
    }
    string ope;
    while(cin>>ope)
    {
        if (ope=="O")
        {
            cin>>ok;
            used[ok]=true;
            for (int i=1;i<=num;i++)
            {
                if (used[i]&&i!=ok)
                    join(p[i],p[ok]);
            }
        }else
        {
            scanf("%d%d", &from, &to);
            if(find(from) == find(to))
                printf("SUCCESS\n");
            else
                printf("FAIL\n");
        }
    }
    return 0;
}

  

posted @ 2016-05-13 15:03  s1124yy  阅读(147)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3