前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >POJ 1985 Cow Marathon(树的直径)

POJ 1985 Cow Marathon(树的直径)

作者头像
attack
发布2018-04-12 12:09:23
9310
发布2018-04-12 12:09:23
举报
文章被收录于专栏:数据结构与算法

Description

After hearing about the epidemic of obesity in the USA, Farmer John wants his cows to get more exercise, so he has committed to create a bovine marathon for his cows to run. The marathon route will include a pair of farms and a path comprised of a sequence of roads between them. Since FJ wants the cows to get as much exercise as possible he wants to find the two farms on his map that are the farthest apart from each other (distance being measured in terms of total length of road on the path between the two farms). Help him determine the distances between this farthest pair of farms. 

Input

* Lines 1.....: Same input format as "Navigation Nightmare".

Output

* Line 1: An integer giving the distance between the farthest pair of farms. 

Sample Input

代码语言:javascript
复制
7 6
1 6 13 E
6 3 9 E
3 5 7 S
4 1 3 N
2 4 20 W
4 7 2 S

Sample Output

代码语言:javascript
复制
52

Hint

The longest marathon runs from farm 2 via roads 4, 1, 6 and 3 to farm 5 and is of length 20+3+13+9+7=52. 

Source

USACO 2004 February

先假设节点1是根节点,

跑到离他最远的点,

再从最远的点开始跑,

跑到的最远的的点就是树的直径

代码语言:javascript
复制
 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<cmath>
 5 #define lli long long int 
 6 using namespace std;
 7 const int MAXN=100001;
 8 void read(int &n)
 9 {
10     char c='+';int x=0;bool flag=0;
11     while(c<'0'||c>'9'){c=getchar();if(c=='-')flag=1;}
12     while(c>='0'&&c<='9')
13     x=(x<<1)+(x<<3)+c-48,c=getchar();
14     flag==1?n=-x:n=x;
15 }
16 struct node
17 {
18     int u,v,w,nxt;
19 }edge[MAXN];
20 int head[MAXN];
21 int num=1;
22 int n,m;
23 void add_edge(int x,int y,int z)
24 {
25     edge[num].u=x;
26     edge[num].v=y;
27     edge[num].w=z;
28     edge[num].nxt=head[x];
29     head[x]=num++;
30 }
31 int dp[MAXN];
32 int ans=0;
33 int ed=0;
34 void dfs(int u,int fa,int now)
35 {
36     if(now>ans)
37     {
38         ans=now;
39         ed=u;
40     }
41     for(int i=head[u];i!=-1;i=edge[i].nxt)
42     {
43         if(edge[i].v!=fa)
44             dfs(edge[i].v,u,now+edge[i].w);
45     }
46 }
47 int  main()
48 {
49      read(n);read(m);
50      memset(head,-1,sizeof(head));
51      for(int i=1;i<=m;i++)
52      {
53          int x,y,z;char c;
54          read(x);read(y);read(z);
55          cin>>c;
56          add_edge(x,y,z);
57          add_edge(y,x,z);
58      }
59      dfs(1,0,0);
60      dfs(ed,0,0);
61      printf("%d",ans);
62     return 0;
63 }
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2017-07-17 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档