• 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
  • 相关阅读:
    the selected directory is not a TomEE home
    java 获取当前年份 月份,当月第一天和最后一天
    java jwt工具类,生成和解析token
    Thymeleaf嵌套循环,每次循环显示固定数量
    oracle 非正常关机 错误1033解决办法
    webService简单记录
    好用的json工具
    org.apache.ws.commons.schema.XmlSchemaForm.getValue()Ljava/lang/String;
    webservice获取ip地址
    JSP(一)
  • 原文地址:https://www.cnblogs.com/clliff/p/4743606.html
Copyright © 2020-2023  润新知