zoukankan      html  css  js  c++  java
  • Pet(hdu 4707 BFS)

    Pet

    Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
    Total Submission(s): 2052    Accepted Submission(s): 1007


    Problem 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

    给定一个树,根节点为0,找到距离根节点大于d的节点的个数。bfs搜索

     1 #include <cstdio>
     2 #include <iostream>
     3 #include <cstring>
     4 #include <queue>
     5 #include <vector>
     6 using namespace std;
     7 int n,d;
     8 vector<int > map[100000+10];     
     9 int vis[100000+10];
    10 struct node
    11 {
    12     int x;
    13     int t;
    14 }tem,top;
    15 vector<int>::iterator p;
    16 void bfs()
    17 {
    18     int i,j;
    19     queue <node> s;
    20     top.x=0,top.t=0;
    21     s.push(top);
    22     while(!s.empty())
    23     {
    24         top=s.front();
    25         s.pop();
    26         if(top.t==d)
    27             continue;
    28         vis[top.x]=1;
    29         for(p=map[top.x].begin();p!=map[top.x].end();p++)
    30         {
    31             if(!vis[*p])
    32             {
    33                 tem.x=*p;
    34                 tem.t=top.t+1;
    35                 vis[*p]=1;
    36                 s.push(tem);
    37             }
    38         }
    39     }
    40 }
    41 int main()
    42 {
    43     int T;
    44     int s,t;
    45     int ans;
    46     freopen("in.txt","r",stdin);
    47     scanf("%d",&T);
    48     while(T--)
    49     {
    50         scanf("%d%d",&n,&d);
    51         memset(vis,0,sizeof(vis));
    52         for(int i=0;i<n;i++)    map[i].clear();
    53         for(int i=0;i<n-1;i++)
    54         {
    55             scanf("%d%d",&s,&t);
    56             map[s].push_back(t);
    57             map[t].push_back(s);
    58         }
    59         ans=0;
    60         bfs();
    61         for(int i=0;i<n;i++)
    62         {
    63             if(!vis[i])    
    64             {
    65                 ans++;
    66                 //cout<<i<<" ";
    67             }
    68         }
    69         printf("%d
    ",ans);
    70     }
    71 }
  • 相关阅读:
    Ubuntu 18.04安装gcc、g++ 4.8
    Java 接口返回值集合防止空指针
    Linux CentOS7.9环境下搭建Java Web 环境
    Springboot集成UReport2
    linux 环境中 单独执行 python 脚本
    sql 注入的问题
    检验上传文件的大小
    Gunicorn使用讲解
    CentOS下安装部署对象存储服务MinIO
    阿里云CentOS7安装MySQL
  • 原文地址:https://www.cnblogs.com/a1225234/p/5036700.html
Copyright © 2011-2022 走看看