A11134 | Journey
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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](https://en.wikipedia.org/wiki/Expected_value).
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](https://en.wikipedia.org/wiki/Expected_value).
输入格式
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 $u_{i}$ and $v_{i}$ ( $1<=u_{i},v_{i}<=n$ , $u_{i}≠v_{i}$ ) — the cities connected by the $i$ -th road.
It is guaranteed that one can reach any city from any other by the roads.
Then $n-1$ lines follow. The $i$ -th line of these lines contains two integers $u_{i}$ and $v_{i}$ ( $1<=u_{i},v_{i}<=n$ , $u_{i}≠v_{i}$ ) — the cities connected by the $i$ -th road.
It is guaranteed that one can reach any city from any other by the roads.
输出格式
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 .
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 .
输入输出样例
输入 #1
4 1 2 1 3 2 4
输出 #1
1.500000000000000
输入 #2
5 1 2 1 3 3 4 2 5
输出 #2
2.000000000000000
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$ .
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$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted