zoukankan      html  css  js  c++  java
  • 杭电 4707 pet(并查集求元素大于k的集合)

    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
    ",ans);
    57     }
    58 }
    ——将来的你会感谢现在努力的自己。
  • 相关阅读:
    鼠标悬停改变图片方法
    margin IE6中加倍问题
    js菜单效果
    杂谈
    常见的服务器端口号
    .NET 配置文件设置数据库连接属性
    ASP.NET 利用 Microsoft.Office.Interop.Excel 版本导出Excel数据
    DataGridView 绑定List时 属性不显示的解决方法
    C# 基本文件操作
    构建可克隆对象(ICloneable)
  • 原文地址:https://www.cnblogs.com/yexiaozi/p/5727404.html
Copyright © 2011-2022 走看看