码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2015-04-29 21:14:03      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

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", n-bumanzu-1);
54     }
55     return 0;
56 }
View Code

 

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

标签:

原文地址:http://www.cnblogs.com/jeff-wgc/p/4466956.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!