hdu 2196 Computer

來源:互聯網
上載者:User

標籤:

Computer Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 3956    Accepted Submission(s): 1983


Problem DescriptionA school bought the first computer some time ago(so this computer‘s id is 1). During the recent years the school bought N-1 new computers. Each new computer was connected to one of settled earlier. Managers of school are anxious about slow functioning of the net and want to know the maximum distance Si for which i-th computer needs to send signal (i.e. length of cable to the most distant computer). You need to provide this information. 


Hint: the example input is corresponding to this graph. And from the graph, you can see that the computer 4 is farthest one from 1, so S1 = 3. Computer 4 and 5 are the farthest ones from 2, so S2 = 2. Computer 5 is the farthest one from 3, so S3 = 3. we also get S4 = 4, S5 = 4. 
InputInput file contains multiple test cases.In each case there is natural number N (N<=10000) in the first line, followed by (N-1) lines with descriptions of computers. i-th line contains two natural numbers - number of computer, to which i-th computer is connected and length of cable used for connection. Total length of cable does not exceed 10^9. Numbers in lines of input are separated by a space. 
OutputFor each case output N lines. i-th line must contain number Si for i-th computer (1<=i<=N). 
Sample Input
51 12 13 11 1
 
Sample Output
32344
 

求樹上一點到其它點的最遠距離,先以任一點為根節點,進行一次bfs搜到距離當前點最遠的點root1,從root1開始再搜,得到root2,從root2再搜一次得到最終答案,每次搜的過程中更新每個點的最遠距離。

#include<stdio.h>#include<math.h>#include<string.h>#include<stdlib.h>#include<algorithm>#include<queue>#include<vector>using namespace std;#define ll long long#define N 11000#define mem(a,t) memset(a,t,sizeof(a))struct node{    int v,w,next;}e[N*2];int head[N];int dis[N];int cnt;int len_max,root;void add(int u,int v,int w){    e[cnt].v=v;    e[cnt].w=w;    e[cnt].next=head[u];    head[u]=cnt++;}void bfs(int u,int len,int fa){    int i,v;    if(len>len_max)    {        len_max=len;        root=u;    }    for(i=head[u];i!=-1;i=e[i].next)    {        v=e[i].v;        if(v!=fa)        {            if(dis[v]<len+e[i].w)                dis[v]=len+e[i].w;            bfs(v,len+e[i].w,u);        }    }    return ;}int main(){    int i,n,a,b;    while(~scanf("%d",&n))    {        mem(head,-1);        cnt=0;        for(i=2;i<=n;i++)        {            scanf("%d%d",&a,&b);            add(i,a,b);            add(a,i,b);        }        mem(dis,0);        len_max=0;        bfs(1,0,-1);        len_max=0;        bfs(root,0,-1);        bfs(root,0,-1);        for(i=1;i<=n;i++)            printf("%d\n",dis[i]);    }    return 0;}



hdu 2196 Computer

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.