• hduoj 4707 Pet 2013 ACM/ICPC Asia Regional Online —— Warmup


    http://acm.hdu.edu.cn/showproblem.php?pid=4707

    Pet

    Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
    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
     
     

    分析:

    这道题要求找出超出陷阱范围的点的个数,用BFS搜索到D即可。

    AC代码:

     1 #include<cstdio>
     2 #include<algorithm>
     3 #include<cstring>
     4 #include<queue>
     5 #include<iostream>
     6 #include<stack>
     7 #include<map>
     8 #include<string>
     9 using namespace std;
    10 vector<int> num[100010];
    11 int d[100010];
    12 int depth, n;
    13 int bfs(){
    14     int val = 0;
    15     queue<int> q;
    16     while(!q.empty()){
    17         q.pop();
    18     }
    19     q.push(0);
    20     while(!q.empty()){
    21         int temp = q.front();
    22         q.pop();
    23         if(d[temp] >= depth){
    24             return val;
    25         }
    26         for(int i = 0; i < num[temp].size(); i++){
    27             if(d[num[temp][i]] == 0x3f3f3f3f){
    28                 q.push(num[temp][i]);
    29                 d[num[temp][i]] = d[temp]+1;
    30                 val++;
    31             }
    32         }
    33     } 
    34 }
    35 int main()
    36 {
    37     int tcase;
    38     scanf("%d", &tcase);
    39     while(tcase--){
    40         scanf("%d%d", &n, &depth);
    41         memset(d, 0x3f3f3f3f, sizeof(d));
    42         for(int i = 0; i < n; i++){
    43             num[i].clear();
    44         }
    45         d[0] = 0;
    46         for(int i = 0; i < n-1; i++){
    47             int x, y;
    48             scanf("%d%d", &x, &y);
    49             num[x].push_back(y);
    50             num[y].push_back(x);
    51         }
    52         int bumanzu = bfs();
    53         printf("%d
    ", n-bumanzu-1);
    54     }
    55     return 0;
    56 }
    View Code

    队友lk又用DFS写了一个,时间上明显降低了,但是空间占用率也上去啦,,,

    AC代码:

     1 #include<cstdio>
     2 #include<algorithm>
     3 #include<cstring>
     4 #include<queue>
     5 #include<iostream>
     6 #include<stack>
     7 #include<map>
     8 #include<string>
     9 using namespace std;
    10 int d;
    11 const int maxn = 1000000+10;
    12 bool vis[maxn];
    13 vector<int> maze[maxn];
    14 void dfs(int val, int depth){
    15     if(depth > d)
    16         return;
    17     vis[val] = true;
    18     for(int i = 0; i < maze[val].size(); i++)
    19         if(!vis[maze[val][i]])
    20             dfs(maze[val][i], depth+1);
    21     return;
    22 }
    23 int main(){
    24     int t, n, x, y;
    25     scanf("%d", &t);
    26     while(t--){
    27         scanf("%d%d", &n, &d);
    28         for(int i = 0; i < n; i++)
    29             maze[i].clear();
    30         memset(vis, false, sizeof(vis));
    31         for(int i = 0; i < n-1; i++){
    32             scanf("%d%d", &x, &y);
    33             maze[x].push_back(y);
    34             maze[y].push_back(x);
    35         }
    36         dfs(0, 0);
    37         int cnt = 0;
    38         for(int i = 0; i < n; i++)
    39             if(!vis[i])
    40                 cnt++;
    41         printf("%d
    ", cnt);
    42     }
    43     return 0;
    44 }
    View Code
  • 相关阅读:
    测试种类
    Android ADB使用之详细篇
    Maven 生命周期
    在Eclipse中新建Maven项目
    Maven搭建环境(Linux& Windows)
    一个简单的JUnit项目
    Assertions
    Aggregating tests in suites
    Test execution order
    c#一个分页控件的例子
  • 原文地址:https://www.cnblogs.com/jeff-wgc/p/4466956.html
Copyright © 2020-2023  润新知