多多色-多人伦交性欧美在线观看-多人伦精品一区二区三区视频-多色视频-免费黄色视屏网站-免费黄色在线

國內最全IT社區平臺 聯系我們 | 收藏本站
阿里云優惠2
您當前位置:首頁 > php開源 > php教程 > hdu 2196 Computer(樹形圖+bfs)

hdu 2196 Computer(樹形圖+bfs)

來源:程序員人生   發布時間:2015-07-24 09:07:03 閱讀次數:3919次

Computer

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


Problem Description
A school bought the first computer some time ago(so this computer's id is 1). During the recent years the school bought N⑴ 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.
 

Input
Input file contains multiple test cases.In each case there is natural number N (N<=10000) in the first line, followed by (N⑴) 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.
 

Output
For each case output N lines. i-th line must contain number Si for i-th computer (1<=i<=N).
 

Sample Input
5 1 1 2 1 3 1 1 1
 

Sample Output
3 2 3 4 4
 

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

#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!=⑴;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,⑴); 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,⑴); len_max=0; bfs(root,0,⑴); bfs(root,0,⑴); for(i=1;i<=n;i++) printf("%d ",dis[i]); } return 0; }



生活不易,碼農辛苦
如果您覺得本網站對您的學習有所幫助,可以手機掃描二維碼進行捐贈
程序員人生
------分隔線----------------------------
分享到:
------分隔線----------------------------
關閉
程序員人生
主站蜘蛛池模板: 国产一二三区有声小说 | 亚洲产国偷v产偷v自拍自拍 | 欧美激情亚洲一区中文字幕 | 免费自拍视频 | 伊人久久大香线焦综合四虎 | 欧美亚洲综合另类在线观看 | 在线视频国产一区 | 一级片.| 成人精品一级毛片 | 欧美综合成人网 | 国产成人久久一区二区三区 | 欧美伊人久久大香线蕉在观 | 最近免费字幕中文大全在线观看 | 午夜刺激 | 在线观看中文字幕2021 | 免费人成激情视频在线观看冫 | 亚洲一区二区三区深夜天堂 | 亚洲视频黄 | 欧美一级片免费观看 | 精品久久久久久综合网 | 亚洲免费在线视频播放 | 国产福利一区在线 | 国产精品合集一区二区三区 | 久久2| 欧美午夜毛片a级在线 | 不卡一级aaa全黄毛片 | 在线观看视频网站 | 欧美xxxx日本 | 91午夜精品亚洲一区二区三区 | japanese18—23护士| 免费亚洲一区 | 日本高清护士xxxxx | 精品久久久久久中文字幕欧美 | 国产成人免费a在线视频色戒 | 亚洲婷婷综合中文字幕第一页 | 大香焦久久 | 久一在线| 日本xxxⅹ色视频在线观看网站 | 亚洲欧洲国产成人精品 | 亚洲乱码中文字幕 | 国产欧美另类久久久品 |