hdu 4607 Park Visit (树的直径)

题目:

Problem Description
Claire and her little friend, ykwd, are travelling in Shevchenko's Park! The park is beautiful - but large, indeed. N feature spots in the park are connected by exactly (N-1) undirected paths, and Claire is too tired to visit all of them. After consideration, she decides to visit only K spots among them. She takes out a map of the park, and luckily, finds that there're entrances at each feature spot! Claire wants to choose an entrance, and find a way of visit to minimize the distance she has to walk. For convenience, we can assume the length of all paths are 1.
Claire is too tired. Can you help her?
 
Input
An integer T(T≤20) will exist in the first line of input, indicating the number of test cases.
Each test case begins with two integers N and M(1≤N,M≤10 5), which respectively denotes the number of nodes and queries.
The following (N-1) lines, each with a pair of integers (u,v), describe the tree edges.
The following M lines, each with an integer K(1≤K≤N), describe the queries.
The nodes are labeled from 1 to N.
 
Output
For each query, output the minimum walking distance, one per line.
 
Sample Input
1
4 2
3 2
1 2
4 2
2
4
 
Sample Output
1
4
 
思路 :
        求一条最长的路(树的直径) 。 如果问的点比最长的路上的点还多,则多一个点就多走两条路。

 代码:

 

两次搜索:

 1 #include<stdio.h>
 2 #include<string.h>
 3 #include<vector>
 4 #include<iostream>
 5 using namespace std;
 6 
 7 const int T=100005;
 8 vector < int > Q[T];
 9 int flag[T],V,Max;
10 
11 
12 void dfs(int x,int xx)
13 {
14     flag[x]=1;
15     for(int i=0;i<(int)Q[x].size();i++)
16     {
17         int k=Q[x][i];
18         if(!flag[k])
19         {
20             dfs(k,xx+1);
21             flag[k]=0;
22         }
23     }
24     if(xx>Max)
25     {
26         V=x;
27         Max=xx;
28     }
29 }
30 
31 
32 int main()
33 {
34     int N;
35     scanf("%d",&N);
36     while(N--)
37     {
38         int n,m,i,a,b,v;
39         memset(flag,0,sizeof(flag));
40         scanf("%d %d",&n,&m);
41         for(i=1;i<=n;i++)
42            Q[i].clear();
43         for(i=1;i<n;i++)
44         {
45             scanf("%d %d",&a,&b);
46             Q[a].push_back(b);
47             Q[b].push_back(a);
48         }
49         V=0; Max=0;
50         dfs(1,1);
51         flag[1]=0;
52         v=V; Max=0; V=0;
53         dfs(v,1);
54        // printf("Max==%d\n",Max);
55         for(i=1;i<=m;i++)
56         {
57             scanf("%d",&a);
58             if(a<=Max) printf("%d\n",a-1);
59             else printf("%d\n",Max-1+(a-Max)*2);
60         }
61     }
62 }
View Code

 

树形dp:

View Code

转载于:https://www.cnblogs.com/lysr--tlp/p/tlppp.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值