zoukankan      html  css  js  c++  java
  • HDU 1213

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1213

    Today is Ignatius' birthday. He invites a lot of friends. Now it's dinner time. Ignatius wants to know how many tables he needs at least. You have to notice that not all the friends know each other, and all the friends do not want to stay with strangers. 

    One important rule for this problem is that if I tell you A knows B, and B knows C, that means A, B, C know each other, so they can stay in one table. 

    For example: If I tell you A knows B, B knows C, and D knows E, so A, B, C can stay in one table, and D, E have to stay in the other one. So Ignatius needs 2 tables at least. 

    Input

    The input starts with an integer T(1<=T<=25) which indicate the number of test cases. Then T test cases follow. Each test case starts with two integers N and M(1<=N,M<=1000). N indicates the number of friends, the friends are marked from 1 to N. Then M lines follow. Each line consists of two integers A and B(A!=B), that means friend A and friend B know each other. There will be a blank line between two cases.

    Output

    For each test case, just output how many tables Ignatius needs at least. Do NOT print any blanks. 

    Sample Input

    2
    5 3
    1 2
    2 3
    4 5
    
    5 1
    2 5

    Sample Output

    2
    4

    并查集的模板题。

    #include<bits/stdc++.h>
    using namespace std;
    const int maxn=1000+5;
    
    int n,m;
    
    int par[maxn],ran[maxn];
    void init(int l,int r){for(int i=l;i<=r;i++) par[i]=i,ran[i]=0;}
    int find(int x){return (par[x]==x)?x:(par[x]=find(par[x]));}
    void unite(int x,int y)
    {
        x=find(x), y=find(y);
        if(x==y) return;
        if(ran[x]<ran[y]) par[x]=y;
        else par[y]=x, ran[x]+=(ran[x]==ran[y]);
    }
    bool isSame(int x,int y){return find(x)==find(y);}
    
    int main()
    {
        int t;
        scanf("%d",&t);
        while(t--)
        {
            scanf("%d%d",&n,&m);
    
            init(1,n);
            for(int i=1,a,b;i<=m;i++)
            {
                scanf("%d%d",&a,&b);
                if(!isSame(a,b)) unite(a,b);
            }
    
            set<int> S;
            for(int i=1;i<=n;i++) S.insert(find(i));
    
            printf("%d
    ",S.size());
        }
    }

    整理一下并查集的两种模板吧:

    int par[maxn],ran[maxn];
    void init(int l,int r){for(int i=l;i<=r;i++) par[i]=i,ran[i]=0;}
    int find(int x){return (par[x]==x)?x:(par[x]=find(par[x]));}
    void unite(int x,int y)
    {
        x=find(x), y=find(y);
        if(x==y) return;
        if(ran[x]<ran[y]) par[x]=y;
        else par[y]=x, ran[x]+=(ran[x]==ran[y]);
    }
    bool isSame(int x,int y){return find(x)==find(y);}
    int par[maxn];
    void init(int l,int r){for(int i=l;i<=r;i++) par[i]=i;}
    int find(int x){return (par[x]==x)?x:(par[x]=find(par[x]));}
    
    //这种简单的并查集的合并方式是:
    int t1=find(u),t2=find(v);
    if(t1!=t2) par[t1]=t2; //这种是把点u所在树并入点v所在树
    if(t1!=t2) par[t2]=t1; //这种是把点v所在树并入点u所在树
  • 相关阅读:
    理解Android系统的进程间通信原理(一)----RPC中的代理模式
    Android系列之Android 命令行手动编译打包详解
    CodeForces 681B Economy Game (暴力)
    CodeForces 681A A Good Contest (水题)
    UVa 1614 Hell on the Markets (贪心+推理)
    UVa 247 Calling Circles (DFS+Floyd)
    UVa 1151 Buy or Build (最小生成树+二进制法暴力求解)
    UVa 1395 Slim Span (最小生成树)
    HDU 1071 The area (数学定积分)
    HDU 1286 找新朋友 (欧拉phi函数打表)
  • 原文地址:https://www.cnblogs.com/dilthey/p/8933128.html
Copyright © 2011-2022 走看看