zoukankan      html  css  js  c++  java
  • How Many Tables 并查集(求有几个集合)

    Problem Description
    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
    ***************************************************************************************************************************
    并查集  求集合的个数
    ***************************************************************************************************************************
     1 #include<iostream>
     2 #include<string>
     3 #include<cstring>
     4 #include<cstdio>
     5 #include<cmath>
     6 using namespace std;
     7 int fa[10010];
     8 int cas,i,j,k,n,m,a,b;
     9 int find(int x)
    10 {
    11     while(x!=fa[x])
    12       x=fa[x];
    13     return x;
    14 }
    15 void UNon(int x,int y)
    16 {
    17     int a=find(x);
    18     int b=find(y);
    19     if(a!=b)
    20     fa[a]=b;
    21 }
    22 int main()
    23 {
    24     int sum[10001],ans;
    25     while(scanf("%d",&cas)!=EOF)
    26     {
    27         while(cas--)
    28         {
    29             memset(sum,0,sizeof(sum));
    30             scanf("%d %d",&n,&m);
    31             for(i=1;i<=n;i++)
    32              fa[i]=i;
    33             for(i=1;i<=m;i++)
    34             {
    35                 scanf("%d %d",&a,&b);
    36                 UNon(a,b);
    37             }
    38             for(i=1;i<=n;i++)
    39              fa[i]=find(fa[i]);
    40             for(i=1;i<=n;i++)
    41              sum[fa[i]]=1;
    42             ans=0;
    43             for(i=1;i<=n;i++)
    44              ans+=sum[i];
    45             printf("%d
    ",ans);
    46         }
    47     }
    48     return 0;
    49 }
    View Code
  • 相关阅读:
    JSP使用ENCTYPE="multipart/formdata"后request.getParameter无效问题CommonFileUpload组件解决方法
    HTML基础之标签的使用 标签的语义化使用
    ASP.NET(C#)发送电子邮件的方法
    处理程序“PageHandlerFactoryIntegrated”在其模块列表中有一个错误模块“ManagedPipelineHandler”
    jQuery表单Input文本框默认说明文字获得焦点后消失效果
    DLL 函数导出和使用
    VBScript 常用函数与类型转化
    修改属性页CPropertyPage标题
    MSDN 无法显示该网页的解决方法
    sqlite3 编译
  • 原文地址:https://www.cnblogs.com/sdau--codeants/p/3397688.html
Copyright © 2011-2022 走看看