程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> hdu-4607-Park Visit

hdu-4607-Park Visit

編輯:C++入門知識

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?

 解析:類似於找一個最長的樹根,即
*__*__*__*__*__*__*__*__*__
          |         |    |    |
          *        *    *    *
          |         |
          *        *

其次就是找最長的樹根時,要兩次遍歷:

1. 第一次遍以任意一個點A出發,找到距離最遠的那個點B。

 2. 再從B出發,找到距離B最遠的那個點C,則BC線段長度即為樹根長。

 證明:首先,B 一定是直徑的一端。

     a) 如果 A 是直徑的一端,那麼 B 顯然是直徑的另一端,結論成立。

     b) 如果 A 不是直徑的一端,那麼路徑(A->B)一定與直徑交於一點 p,且(p->B)一定是直徑的一部分,推出 B 是直徑的一端,結論成立。

      1> 為什麼一定存在交點 p?


          如果不存在交點 p ,由於樹是連通的,那麼加若干邊使得直徑經過(A->B)上的一點 p,直徑不會變得更短。


      2>為什麼(p->B)一定是直徑的一部分。


          如果不是,(A->B)就不是從 A 到 B 最長的路徑。

然後大家就明白了,設樹根長為L,假如要參觀的景點N<=L,則輸出 N-1 ,否則,輸出 L - 1 + 2 * ( N - L )。 
具體代碼如下:

 

#include<string.h>   
#include<vector>   
#include<queue>   
using namespace std;  
int s[100005];  
int main()  
{  
    int N,m,n,a,b,i,l;  
    scanf("%d",&N);  
    while(N--)  
    {  
        scanf("%d%d",&m,&n);  
        vector<int> Q[100005];  
        queue<int> q;  
        memset(s,0,sizeof(s));  
        for(i=0;i<m-1;i++)  
        {  
            scanf("%d%d",&a,&b);  
            Q[a].push_back(b);  
            Q[b].push_back(a);  
        }  
        q.push(1);s[1]=1;  
        while(!q.empty())  
        {  
            a=q.front();  
            for(i=0;i<Q[a].size();i++)  
            {  
                if(!s[Q[a][i]])  q.push(Q[a][i]);  
            }  
            s[a]=1;q.pop();  
        }  
        q.push(a);memset(s,0,sizeof(s));s[a]=1;  
        while(!q.empty())  
        {  
            a=q.front();  
            for(i=0;i<Q[a].size();i++)  
            {  
                if(!s[Q[a][i]])  {q.push(Q[a][i]);s[Q[a][i]]=s[a]+1;}  
            }  
            q.pop();  
        }  
        l=s[a];  
        while(n--)  
        {  
            scanf("%d",&a);  
            if(a<=l) printf("%d\n",a-1);  
            else     printf("%d\n",l-1+2*(a-l));  
        }  
    }  
}  

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved