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 }
  • 相关阅读:
    使用Python通过docker api控制docker容器
    windows 编译 google v8
    Kali下Metasploit自动连接postgresql
    更新Kali中的metasploit
    spring + mybatis 注解式事务不回滚的原因分析 @Transactional
    ListView中使用type需要注意的东西 java.lang.ArrayIndexOutOfBoundsException: length=2; index=2 addScrapView
    Missing artifact com.sun:tools:jar:1.5.0的解决方案
    0919-The Standard of Code Review
    重定向URL乱码问题
    hive学习_01
  • 原文地址:https://www.cnblogs.com/zllwxm123/p/7354826.html
Copyright © 2011-2022 走看看