zoukankan      html  css  js  c++  java
  • Journey

    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 ≤ nui ≠ 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
    /*************************************************************************
    	> File Name: cf839.cpp
    	> Author: Henry Chen
    	> Mail: 390989083@qq.com 
    	> Created Time: 六  9/26 21:01:07 2020
     ************************************************************************/
    
    #include<bits/stdc++.h>
    using namespace std;
    vector<int>vec[100001];
    double ans = 0;
    void dfs(int u,int fa,int depth,double pos)
    {
    	int k = 1;
    	//cout << u << endl;
    	for(int i = 0;i < vec[u].size();i++)
    	{
    		int v = vec[u][i];
    		if(v != fa)
    		{
    			k = 0;
    			dfs(v,u,depth+1,pos*(vec[u].size()-1+(u == 1)));
    		}
    	}
    	if(k == 1) 
    	{
    		//cout << pos << " " << depth << endl;
    		ans += 1.0/pos*depth;
    	}
    }
    int main()
    {
    	int n;
    	cin >> n;
    	for(int i = 1;i < n;i++)
    	{
    		int u,v;
    		scanf("%d%d",&u,&v);
    		vec[u].push_back(v);
    		vec[v].push_back(u);
    	}
    	dfs(1,1,0,1);
    	//cout << ans << endl;
    	printf("%.10llf",ans);
    	return 0;
    }
    

    期望的概念题

  • 相关阅读:
    都9012了,Java8日期时间API你还没有掌握?
    图解AQS的设计与实现,手摸手带你实现一把互斥锁!
    面试填坑笔记-从代理模式到SpringAOP的动态代理
    并发编程-硬件加持的CAS操作够快么?
    并发编程-Java内存模型到底是什么
    并发编程-你真的知道并发问题产生的源头吗?
    单例模式-最简单的设计模式?
    浅谈Java中的深克隆和浅克隆(阿里面试)
    设计模式-工厂模式
    浅谈MySQL存储引擎-InnoDB&MyISAM
  • 原文地址:https://www.cnblogs.com/mzyy1001/p/13742602.html
Copyright © 2011-2022 走看看