zoukankan      html  css  js  c++  java
  • HDU 1213 How Many Tables (并查集)

    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. 

    InputThe 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. 
    OutputFor 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<cstdio>
     2 #include<iostream>
     3 #include<cmath>
     4 #include<string.h>
     5 #include<algorithm>
     6 #define LL long long
     7 #define mem(a, b) memset(a, b, sizeof(a))
     8 #define N 100001 
     9 using namespace std;
    10 int pre[N], vis[1001];
    11 int fi(int x) {
    12     return pre[x]==x?x:pre[x]=fi(pre[x]);
    13 }
    14 
    15 void uni(int x, int y){
    16     int fx=fi(x), fy=fi(y);
    17     if(fx!=fy){
    18         pre[fx]=fy;
    19     }
    20 }
    21 
    22 int n,t,m;
    23 int main(){
    24     scanf("%d",&t);
    25     while(t--){
    26         scanf("%d%d",&n,&m);
    27         for(int i=1; i<=n; i++){
    28             pre[i]=i;
    29         }
    30         for(int i=0; i<m; i++){
    31             int a, b;
    32             scanf("%d%d",&a,&b);
    33             uni(a,b);
    34         }
    35         mem(vis, 0);
    36         int sum=0;
    37         for(int i=1; i<=n; i++){
    38             if(vis[fi(i)]==0){
    39                 sum++;
    40                 vis[fi(i)]=1;
    41             }
    42         }
    43         printf("%d
    ",sum);
    44     } 
    45 }
  • 相关阅读:
    【瞎搞】 HDU 3101 The Heart of the Country
    使用EXCEL设置“下拉菜单”选项功能
    IE, FireFox, Opera 浏览器支持CSS实现Alpha透明的方法 兼容问题
    Linux的文件权限
    刘德华夏日Fiesta演唱会上那个表演探戈舞的演员是谁啊?_百度知道
    每周日与周四《红酒屋》探戈舞会"Wine Bar" Milonga_原生态拉丁_新浪博客
    精华区文章阅读
    探戈
    探戈
    TangoWalk小组课程与优惠(20131208更新) | TangoWalk 学跳阿根廷探戈舞
  • 原文地址:https://www.cnblogs.com/cake-lover-77/p/10912564.html
Copyright © 2011-2022 走看看