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:
K B1 B2 … 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 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:
1 | 4 |
Sample Output:
1 | 2 10 |
作者: CHEN, Yue
单位: 浙江大学
时间限制: 150 ms
内存限制: 64 MB
代码长度限制: 16 KB
题目大意
给出森林中鸟的照片,出现在同一张照片的鸟是同一颗树上的。求有几棵树,以及鸟的总数。然后给出任两只鸟,要求判断是否同一颗树。
分析
并查集,每次都与照片中出现的第一只鸟合并。注意必须降低树的深度,否则测试点4会超时。
代码
1 |
|