码迷,mamicode.com
首页 > 其他好文 > 详细

杭电 4707 pet(并查集求元素大于k的集合)

时间:2016-08-02 08:53:29      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:

Description

One day, Lin Ji wake up in the morning and found that his pethamster escaped. He searched in the room but didn’t find the hamster. He tried to use some cheese to trap the hamster. He put the cheese trap in his room and waited for three days. Nothing but cockroaches was caught. He got the map of the school and foundthat there is no cyclic path and every location in the school can be reached from his room. The trap’s manual mention that the pet will always come back if it still in somewhere nearer than distance D. Your task is to help Lin Ji to find out how many possible locations the hamster may found given the map of the school. Assume that the hamster is still hiding in somewhere in the school and distance between each adjacent locations is always one distance unit.

Input

The input contains multiple test cases. Thefirst line is a positive integer T (0<T<=10), the number of test cases. For each test cases, the first line has two positive integer N (0<N<=100000) and D(0<D<N), separated by a single space. N is the number of locations in the school and D is the affective distance of the trap. The following N-1lines descripts the map, each has two integer x and y(0<=x,y<N), separated by a single space, meaning that x and y is adjacent in the map. Lin Ji’s room is always at location 0. 

Output

For each test case, outputin a single line the number of possible locations in the school the hamster may be found.

Sample Input

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

Sample Output

2

大意:
  n个接点从0~n。n-1中关系,问到0节点距离大于k的节点数。
 1 #include<cstdio>
 2 int n,b,a,k,fa[100000],i,ans;
 3 int find(int a)            //只查询不压缩 
 4 {
 5     int r=a;
 6     while(r != fa[r])
 7     {
 8         r=fa[r];
 9     }
10     return r;
11 }
12 int f1(int a)        //深度搜索 
13 {
14     int s=0;
15     while(a != fa[a])
16     {
17         a=fa[a];
18         s++;        //s表示到0节点的距离 
19     }
20     return s;
21 }
22 int main()
23 {
24     int t;
25     scanf("%d",&t);
26     while(t--)
27     {
28         scanf("%d %d",&n,&k);
29         for(i = 0 ; i < n ;i++)
30         {
31             fa[i]=i;
32         }
33         for(i = 1 ; i < n ;i++)
34         {
35             scanf("%d %d",&a,&b);
36             if(a>b)                    //令大的数为小的数的子节点 
37             {
38                 fa[a]=b;
39             }
40             else
41             {
42                 fa[b]=a;
43             }
44         }
45         ans=0;
46         for(i = n-1 ; i >= 0 ; i--)        //从最大的数开始找(数大的节点在树的下面 ) 
47         {
48             if(find(i) == 0)
49             {
50                 if(f1(i) > k)
51                 {
52                     ans++;
53                 }
54             }
55         }
56         printf("%d\n",ans);
57     }
58 }

 

杭电 4707 pet(并查集求元素大于k的集合)

标签:

原文地址:http://www.cnblogs.com/yexiaozi/p/5727404.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!