博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PAT 1118 Birds in Forest [一般]
阅读量:5925 次
发布时间:2019-06-19

本文共 2382 字,大约阅读时间需要 7 分钟。

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:

43 10 1 22 3 44 1 5 7 83 9 6 4210 53 7

Sample Output:

2 10YesNo

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

#include 
#include
#include
#include
using namespace std;#define maxn 10001int 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
>k; vector
vt(k); for(int j=0;j
>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
mp; int father,bd=0; for(int i=0;i
>m; int a,b; for(int i=0;i
>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

你可能感兴趣的文章
hibernate的校验框架validation 和 HttpMessageConverter的配置方式
查看>>
动态链接库管理
查看>>
尼日利亚国内最大航空公司Arik Air遭遇数据泄露
查看>>
if (log.isDebugEnabled()) 使用场景
查看>>
2019年首批!网易易盾加固系统通过中国反网络病毒联盟认证
查看>>
Hadoop集群环境搭建
查看>>
Quartz2D
查看>>
iOS通讯录
查看>>
JS单例模式
查看>>
数据库查询性能优化之利器—索引(二)
查看>>
django自定义管理表单
查看>>
栈与queue
查看>>
设置环境变量
查看>>
嵌入式主板的应用领域
查看>>
你的信息只值1毛钱 大数据时代如何不做“透明人”?
查看>>
非win7系统打开H3C的注意事项
查看>>
基础篇|PHP如何解决网站大流量和高并发
查看>>
安装RabbitMQ(一)
查看>>
Java学习方法:Java学习路线分享
查看>>
文件查找和压缩
查看>>