zoukankan      html  css  js  c++  java
  • PAT (Advanced Level) Practice 1118 Birds in Forest (25分) (并查集+优化)

    1.题目

    Some scientists took pictures of thousands of birds in a forest. Assume that all the birds appear in the same picture belong to the same tree. You are supposed to help the scientists to count the maximum number of trees in the forest, and for any pair of birds, tell if they are on the same tree.

    Input Specification:

    Each input file contains one test case. For each case, the first line contains a positive number N (≤10​4​​) which is the number of pictures. Then N lines follow, each describes a picture in the format:

    K B​1​​ B​2​​ ... B​K​​

    where K is the number of birds in this picture, and B​i​​'s are the indices of birds. It is guaranteed that the birds in all the pictures are numbered continuously from 1 to some number that is no more than 10​4​​.

    After the pictures there is a positive number Q (≤10​4​​) which is the number of queries. Then Q lines follow, each contains the indices of two birds.

    Output Specification:

    For each test case, first output in a line the maximum possible number of trees and the number of birds. Then for each query, print in a line Yes if the two birds belong to the same tree, or No if not.

    Sample Input:

    4
    3 10 1 2
    2 3 4
    4 1 5 7 8
    3 9 6 4
    2
    10 5
    3 7
    

    Sample Output:

    2 10
    Yes
    No

    2.题目分析

    在进行路径压缩之后,不一定每个节点的father都是自己这组的最上级:有可能刚开始自己的最上级还未出现,所以此时的压缩路径后的father就不是最上级,所以最后两只鸟是不是在一棵树上不能用father[a]==father[b]判断,还是要用find(a)==find(b)判断

    3.代码

    #include<iostream>
    #include<unordered_set>
    using namespace std;
    int father[10001];
    int ranks[10001];
    int find(int x)
    {
    	if (father[x] == x)return x;
    	return father[x] = find(father[x]);
    }
    void unions(int x, int y)
    {
    	int a = find(x);
    	int b = find(y);
    	if (a == b)return;
    	if (ranks[a] > ranks[b])father[b] = a;
    	else
    	{
    		father[a] = b;
    		if (ranks[a] == ranks[b])ranks[b]++;
    	}
    
    }
    int main()
    {
    	int n,amount,a,b,q,count=0;
    	scanf("%d", &n);
    	for (int i = 1; i <= 10010; i++)
    		father[i] = i;
    	unordered_set<int>list;
    	for (int i = 1; i <= n; i++)
    	{
    		scanf("%d", &amount);
    		if (amount == 0)continue;
    		scanf("%d", &a); list.insert(a);
    		if (amount == 1)continue;
    		for (int i = 1; i <amount; i++)
    		{
    			scanf("%d", &b); list.insert(b);
    			unions(a, b);
    			a = b;
    		}
    	}
        int size=list.size();
    	for (int i = 1; i <= size; i++)
    		if (father[i] == i)count++;
    	printf("%d %d
    ", count, size);
    	scanf("%d", &q);
    	for (int i = 1; i <= q; i++)
    	{
    		scanf("%d %d", &a, &b);
    		if (find(a)==find(b))printf("Yes
    ");
    		else printf("No
    ");
    	}
    
    }
  • 相关阅读:
    vue中@事件处理函数的柯里化
    一个例子生动理解js的原型_js的原型prototype和__protopy__区别
    vue3自定义v-model
    js初始化一个特定值的array
    dom的clientHeight、scrollHeight以及offsetHeight
    ts踩坑记录
    常见问题1
    资料share
    几种开放源码的TCPIP协议栈
    阻塞与非阻塞,同步与异步
  • 原文地址:https://www.cnblogs.com/Jason66661010/p/12788860.html
Copyright © 2011-2022 走看看