HDU 3172 Virtual Friends(带权并查集)

题目地址:HDU 3172

带权并查集水题。每次合并的时候维护一下权值。注意坑爹的输入。。

代码如下:

#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
#include <stdlib.h>
#include <math.h>
#include <ctype.h>
#include <queue>
#include <map>
#include <set>
#include <algorithm>

using namespace std;
#define LL long long
int bin[210000], num[210000];
int find1(int x)
{
    return bin[x]==x?x:bin[x]=find1(bin[x]);
}
void join(int x, int y)
{
    int f1=find1(x);
    int f2=find1(y);
    if(f1!=f2)
    {
        bin[f2]=f1;
        num[f1]+=num[f2];
        printf("%d\n",num[f1]);
    }
    else
        printf("%d\n",num[f2]);
}
int main()
{
    int t, n, i, cnt;
    char s1[30], s2[30];
    map<string,int>q;
    while(scanf("%d",&t)!=EOF)
    {
        while(t--)
        {
            scanf("%d",&n);
            for(i=1; i<210000; i++)
            {
                bin[i]=i;
                num[i]=1;
            }
            q.clear();
            cnt=1;
            while(n--)
            {
                getchar();
                scanf("%s%s",s1,s2);
                if(!q[s1])
                    q[s1]=cnt++;
                if(!q[s2])
                    q[s2]=cnt++;
                join(q[s1],q[s2]);
            }
        }
    }
    return 0;
}


  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值