PAT 1118 Birds in Forest [一般]

本文探讨了通过图片分析森林中鸟类分布情况的算法。利用并查集数据结构,实现对数千张包含鸟类图片的处理,以确定最大可能的树木数量及鸟类是否位于同一棵树上。文章详细介绍了输入输出规格、样例及其解析过程。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1118 Birds in Forest (25 分)

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 (104​​) which is the number of pictures. Then N lines follow, each describes a picture in the format:

B1​​ B2​​ ... BK​​

where K is the number of birds in this picture, and Bi​​'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 104​​.

After the pictures there is a positive number Q (104​​) 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

 题目大意:给出几张照片,照片中有几只鸟,判断是否在一棵树上。

#include <iostream>
#include<vector>
#include<map>
#include<algorithm>
using namespace std;

#define maxn 10001
int bird[maxn];//初始状态都是0,应该将他们都初始化为自己。
int exist[maxn];
int findF(int index){
//    if(bird[index]==0)
//        return index;
//    else return findF(bird[index]);
    int r=bird[index];
    while(bird[r]!=r){
        int t=bird[r];
        bird[index]=t;
        r=t;
    }
    return r;
}
void getUnion(int a,int b){//将a和b合并起来,
    bird[b]=a;//这样就合并了呗。
}

int main(){
    int n;
    cin>>n;
    for(int i=0;i<maxn;i++)
        bird[i]=i;
    int k,t,fa,fb;
    for(int i=0;i<n;i++){
        cin>>k;
        vector<int> vt(k);
        for(int j=0;j<k;j++){
            cin>>vt[j];//应该把这三个都合并起来。
            exist[vt[j]]=1;//表示出现过。
            if(j!=0){//如果不是当前,那么就不能find它的father.
                fa=findF(vt[j-1]);//这个应该放到Union函数里的。
                fb=findF(vt[j]);
                if(fa!=fb)getUnion(fa,fb);
            }
        }
    }
    map<int,int> mp;
    int father,bd=0;
    for(int i=0;i<maxn;i++){
        if(exist[i]==1){
            bd++;
            father=findF(i);
            mp[father]++;
        }
    }
    cout<<mp.size()<<" "<<bd<<'\n';
    int m;
    cin>>m;
    int a,b;
    for(int i=0;i<m;i++){
        cin>>a>>b;
        if(findF(a)==findF(b)){
            cout<<"Yes"<<'\n';
        }
        else{
            cout<<"No"<<'\n';
        }
    }
    return 0;
}

 

//这个AC了,出现的问题在下。

1.忽略了输出要求,原来是要求输出树的数量以及鸟的总数量;

2.需要初始化bird数组为i,这个是需要一个for循环的,不可少的。

3.再次复习了并查集的两个函数怎么写。 

转载于:https://www.cnblogs.com/BlueBlueSea/p/9870743.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值