• 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 }
  • 相关阅读:
    jQuery的基本使用、实践、效果、API
    关于Nginx那些事儿
    Linux下安装Nginx(保姆教程)
    jQuery的那些事儿
    k8s的应用回滚--record
    MySQL之PXC
    MySQL之高可用MHA
    MySQL之主从半同步复制
    MySQL之MyCat
    MySQL之主从复制
  • 原文地址:https://www.cnblogs.com/cake-lover-77/p/10912564.html
Copyright © 2020-2023  润新知