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

    Pet

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


    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
     
    Source
     
     
    题意:在0号房间放一个奶酪,在距离D之内的房间的仓鼠都会被吸引过来,求在距离D之外的房间有多少个?
    分析:用vector保存,遍历即可。
    #pragma comment(linker, "/STACK:1024000000,1024000000")
    #include<cstdio>
    #include<string>
    #include<iostream>
    #include<cstring>
    #include<cmath>
    #include<stack>
    #include<queue>
    #include<vector>
    #include<map>
    #include<stdlib.h>
    #include<algorithm>
    #define LL __int64
    #define FIN freopen("in.txt","r",stdin)
    using namespace std;
    const int MAXN = 1000000+10;
    vector<int> G[MAXN];
    int d[MAXN];
    int n,D,ans;
    void bfs()
    {
        memset(d,-1,sizeof(d));
        d[0]=0;
        queue<int> Q;
        Q.push(0);
        while(!Q.empty())
        {
            int u=Q.front(); Q.pop();
            for(int i=0;i<G[u].size();i++)
            {
                int v=G[u][i];
                if(d[v]==-1)
                {
                    d[v]=d[u]+1;
                    Q.push(v);
                }
            }
        }
    }
    void add(int u,int v)
    {
        G[u].push_back(v);
        G[v].push_back(u);
    }
    int main()
    {
        int kase;
        scanf("%d",&kase);
        while(kase--)
        {
            for(int i=0;i<n;i++) G[i].clear();
    
            scanf("%d %d",&n,&D);
            for(int i=1;i<n;i++)
            {
                int u,v;
                scanf("%d %d",&u,&v);
                add(u,v);
            }
    
            bfs();
    
            ans=0;
            for(int i=0;i<n;i++)
                if(d[i]>D)
                    ans++;
            printf("%d
    ",ans);
        }
        return 0;
    }
    View Code
  • 相关阅读:
    使用元数据简化jdbc代码---查询操作(用到反射)
    DDD(领域驱动设计)总结
    关于java中BufferedReader的read()及readLine()方法的使用心得
    BufferedInputStream使用详解
    java 分次读取大文件的三种方法
    《深入理解mybatis原理》 Mybatis数据源与连接池
    《深入理解mybatis原理》 MyBatis的架构设计以及实例分析
    Mybatis源码解析优秀博文
    java 通过调用存储过程获取结果集
    httprunner学习3-extract提取token值参数关联(上个接口返回的token,传给下个接口请求参数)
  • 原文地址:https://www.cnblogs.com/clliff/p/4743606.html
Copyright © 2011-2022 走看看