【HDU2196】【Computer】

来源:互联网 发布:lte网络接口协议 编辑:程序博客网 时间:2024/05/16 03:24


Computer

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


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-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.
 

Input
Input 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.
 

Output
For 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
 

Author
scnu
 

Recommend
lcy
 
这个解释的很好,来自D_double'journey. 但是代码我更喜欢下面的版本。。。

题意:

给出一棵树,求离每个节点最远的点的距离


思路:

把无根树转化成有根树分析,

对于上面那棵树,要求距结点2的最长距离,那么,就需要知道以2为顶点的子树(蓝色圈起的部分,我们叫它Tree(2)),距顶点2的最远距离L1

还有知道2的父节点1为根节点的树Tree(1)-Tree(2)部分(即红色圈起部分),距离结点1的最长距离+dist(1,2) = L2,那么最终距离结点2最远的距离就是max{L1,L2}


f[i][0],表示顶点为i的子树的,距顶点i的最长距离
f[i][1],表示Tree(i的父节点)-Tree(i)的最长距离+i跟i的父节点距离


要求所有的f[i][0]很简单,只要先做一次dfs求每个结点到叶子结点的最长距离即可。
然后要求f[i][1], 可以从父节点递推到子节点,

假设节点u有n个子节点,分别是v1,v2...vn
那么
如果vi不是u最长距离经过的节点,f[vi][1] = dist(vi,u)+max(f[u][0], f[u][1])
如果vi是u最长距离经过的节点,那么不能选择f[u][0],因为这保存的就是最长距离,要选择Tree(u)第二大距离secondDist,
可得f[vi][1] = dist(vi, u) + max(secondDist, f[u][1])


#include <iostream>#include <cstring>#include <cmath>#include <queue>#include <stack>#include <list>#include <map>#include <set>#include <string>#include <cstdlib>#include <cstdio>#include <algorithm>using namespace std;   const int N = 10010;int n;int head[N];struct Node{int to,next,len;}edge[N*2];int maxn[N];int smaxn[N];int maxnpoint[N];int smaxnpoint[N];int tot;void addedge(int u,int v,int len){edge[tot].to = v;edge[tot].len = len;edge[tot].next = head[u];head[u] = tot;tot ++;}void dfs1(int u,int p){maxn[u] = smaxn[u] = 0;for(int i=head[u];i!=-1;i=edge[i].next){int idx = i;int v = edge[idx].to;int len = edge[idx].len;if(p == v) continue;dfs1(v,u);if(smaxn[u] < maxn[v] + len){smaxn[u] = maxn[v] + len;smaxnpoint[u] = v;if(smaxn[u] > maxn[u]){swap(smaxn[u],maxn[u]);swap(smaxnpoint[u],maxnpoint[u]);}}}}void dfs2(int u,int p){for(int i=head[u];i!=-1;i=edge[i].next){int v = edge[i].to;int len = edge[i].len;if(p == v) continue;if(maxnpoint[u] == v){if(smaxn[v] < smaxn[u] + len){smaxn[v] = smaxn[u] + len;smaxnpoint[v] = u;if(smaxn[v] > maxn[v]){swap(smaxn[v],maxn[v]);swap(smaxnpoint[v],maxnpoint[v]);}}}else{if(smaxn[v] < maxn[u] + len){smaxn[v] = maxn[u] + len;smaxnpoint[v] = u;if(smaxn[v] > maxn[v]){swap(smaxn[v],maxn[v]);swap(smaxnpoint[v],maxnpoint[v]);}} }dfs2(v,u);}}int main(){    while(scanf("%d",&n) != EOF){memset(head,-1,sizeof(head));tot = 0;for(int i=2;i<=n;i++){int v,len;scanf("%d%d",&v,&len);addedge(i,v,len);addedge(v,i,len);}dfs1(1,-1);dfs2(1,-1);for(int i=1;i<=n;i++){printf("%d\n",maxn[i]);}}    return 0;}


0 0
原创粉丝点击