zoukankan      html  css  js  c++  java
  • C. Journey(dfs)

    C. Journey
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    There are n cities and n - 1 roads in the Seven Kingdoms, each road connects two cities and we can reach any city from any other by the roads.

    Theon and Yara Greyjoy are on a horse in the first city, they are starting traveling through the roads. But the weather is foggy, so they can’t see where the horse brings them. When the horse reaches a city (including the first one), it goes to one of the cities connected to the current city. But it is a strange horse, it only goes to cities in which they weren't before. In each such city, the horse goes with equal probabilities and it stops when there are no such cities.

    Let the length of each road be 1. The journey starts in the city 1. What is the expected length (expected value of length) of their journey? You can read about expected (average) value by the link https://en.wikipedia.org/wiki/Expected_value.

    Input

    The first line contains a single integer n (1 ≤ n ≤ 100000) — number of cities.

    Then n - 1 lines follow. The i-th line of these lines contains two integers ui and vi (1 ≤ ui, vi ≤ n, ui ≠ vi) — the cities connected by the i-th road.

    It is guaranteed that one can reach any city from any other by the roads.

    Output

    Print a number — the expected length of their journey. The journey starts in the city 1.

    Your answer will be considered correct if its absolute or relative error does not exceed 10 - 6.

    Namely: let's assume that your answer is a, and the answer of the jury is b. The checker program will consider your answer correct, if .

    Examples
    Input
    4
    1 2
    1 3
    2 4
    Output
    1.500000000000000
    Input
    5
    1 2
    1 3
    3 4
    2 5
    Output
    2.000000000000000
    Note

    In the first sample, their journey may end in cities 3 or 4 with equal probability. The distance to city 3 is 1 and to city 4 is 2, so the expected length is 1.5.

    In the second sample, their journey may end in city 4 or 5. The distance to the both cities is 2, so the expected length is 2.

     题意:给一棵树,结点1为根,每条边长为1,从根出发,每到一个结点,可等概率的往其子树走,到叶子则终止,求走过的路径长度的期望。

    就用dfs瞎搞啦.

     1 #include <bits/stdc++.h>
     2 #define N 100005
     3 using namespace std;
     4 vector<int> v[N];
     5 double cnt=0;
     6 void dfs(int x,int fa,int deep,double a){
     7   if(v[x].size()==1){
     8     cnt+=deep*a;
     9   }
    10   for(int i=0;i<v[x].size();i++){
    11     if(v[x][i]==fa)
    12       continue;
    13     deep++;
    14     int val=v[x].size();
    15     if(x!=1) val--;
    16     dfs(v[x][i],x,deep,a/val);
    17     deep--;
    18   }
    19 }
    20 int main(){
    21     int n;
    22     double ans=0;
    23     scanf("%d",&n);
    24     int x,y;
    25     for(int i=1;i<n;i++) {
    26       scanf("%d%d",&x,&y);
    27         v[x].push_back(y);
    28         v[y].push_back(x);
    29     }
    30     dfs(1,-1,0,1);
    31     printf("%.15f
    ",cnt);
    32 }
  • 相关阅读:
    23中设计模式详解
    C#中的partial,this关键字以及扩展方法
    笨重WebService与轻快的RestFul
    彻底理解Web Service
    WebService中的瘦客户端与富客户端
    [转]Sql Or NoSql,看完这一篇你就懂了
    [转]Mysql字符串截取总结:left()、right()、substring()、substring
    [转]ASP.NET Core on K8s 入门学习系列文章目录
    [转]CSDN-markdown语法之怎样使用LaTeX语法编写数学公式
    [转]我在传统行业做数字化转型(1)预告篇
  • 原文地址:https://www.cnblogs.com/zllwxm123/p/7354826.html
Copyright © 2011-2022 走看看