hdu2376 树上取两点,求两边距离和期望(树上dfs)

同:http://www.cnblogs.com/xiao-xin/articles/4196009.html

顺手也给做了,更简单了一些==

 1 #include<stdio.h>
 2 #include<string.h>
 3 #include<algorithm>
 4 using namespace std;
 5 #define LL long long
 6 LL now,head[200005],next[200005],point[200005];
 7 LL down[200005],l[200005],r[200005],w[200005];
 8 void add(LL u,LL v)
 9 {
10   next[++now]=head[u];
11   head[u]=now;
12   point[now]=v;
13 }
14 void dfs(LL pre,LL u)
15 {
16   down[u]=1;
17   for (LL i=head[u];i!=-1;i=next[i])
18   {
19     LL v=point[i];
20     if (v==pre) continue;
21     dfs(u,v);
22     down[u]+=down[v];
23   }
24 }
25 int main()
26 {
27   LL T,i,n,tmp,sum;
28   double ans;
29   scanf("%I64d",&T);
30   while (T--)
31   {
32     memset(head,-1,sizeof(head));
33     now=0;
34     scanf("%I64d",&n);
35     for (i=1;i<n;i++)
36     {
37       scanf("%I64d%I64d%I64d",&l[i],&r[i],&w[i]);
38       add(l[i],r[i]);
39       add(r[i],l[i]);
40     }
41     sum=n*(n-1)/2;
42     dfs(-1,0);
43     ans=0.0;
44     for (i=1;i<n;i++)
45     {
46       tmp=min(down[l[i]],down[r[i]]);
47       ans=ans+1.0*w[i]*tmp*(n-tmp)/sum;
48     }
49     printf("%lf\n",ans);
50   }
51 }
View Code

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2376

转载于:https://www.cnblogs.com/xiao-xin/articles/4196673.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值