美文网首页
寒假10.7

寒假10.7

作者: wolfway_d0ff | 来源:发表于2019-01-29 23:50 被阅读0次

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<iostream>
using namespace std;
int p[1005];
int find(int x)
{
    if (x != p[x])
        p[x] = find(p[x]);
    return p[x];
}
int h(int x, int y)
{
    return  p[x] = y;
}
int main()
{
    int t, i, a, b;
    cin >> t;
    while (t--)
    {
        int n, m, x = 0;
        cin >> n >> m;
        for (i = 1; i <= n; i++)
            p[i] = i;
        for (i = 1; i <= m; i++)
        {
            cin >> a >> b;
            a = find(a);
            b = find(b);
            if (a != b)
                h(a, b);
        }
        for (i = 1; i <= n; i++)
        {
            if (p[i] == i)
                x++;
        }
        cout << x;
        if (t != 0)
        {
            cout << endl;
        }
    }
    return 0;
}

相关文章

  • 寒假10.7

    Today is Ignatius' birthday. He invites a lot of friends....

  • 兴趣盎然

    10.6 10.7 10.7

  • 练习

    练习10.7

  • 国庆

    国庆期间的看书清单: 1. 2021.10.1-10.7 《海那边》严歌苓 2. 2021.10.1-10.7 《...

  • 起床打卡

    10.7日,早晨5:34起

  • 10.7

    和李老师在周日的晚上去镇上吃饭,顺便拿快递。 李老师不是个话多的人,我也不是个话多的人,所以两个人走在一起,往往会...

  • 10.7

    下属提加薪,升职,对人性的不了解,故意岔开话题!

  • 10.7

    无论谁对谁错,伤害是双方的,需要得到彼此尊重的独立性。

  • 10.7

    国庆假期到了最后一天。说一件开心的事,今天室友帮我拍照拍得特别好看。明天要去宁波找高中同学玩了。基本上回来后会把文...

  • 10.7

    现在是二十二点三十九分,终于挤上了武汉758的末班车……原本以为在家度过国庆假期,可以完美躲过节日车流人流“高峰”...

网友评论

      本文标题:寒假10.7

      本文链接:https://www.haomeiwen.com/subject/awafsqtx.html