A10884 | Send the Fool Further! (hard)
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Heidi is terrified by your estimate and she found it unrealistic that her friends would collaborate to drive her into debt. She expects that, actually, each person will just pick a random friend to send Heidi to. (This randomness assumption implies, however, that she can now visit the same friend an arbitrary number of times...) Moreover, if a person only has one friend in common with Heidi (i.e., if that person is in a leaf of the tree), then that person will not send Heidi back (so that Heidi's travel will end at some point).
Heidi also found unrealistic the assumption that she can make all the travels in one day. Therefore now she assumes that every time she travels a route between two friends, she needs to buy a new ticket. She wants to know: how much should she expect to spend on the trips?
For what it's worth, Heidi knows that Jenny has at least two friends.
Heidi also found unrealistic the assumption that she can make all the travels in one day. Therefore now she assumes that every time she travels a route between two friends, she needs to buy a new ticket. She wants to know: how much should she expect to spend on the trips?
For what it's worth, Heidi knows that Jenny has at least two friends.
输入格式
The first line contains the number of friends $n$ ( $3<=n<=10^{5}$ ). The next $n-1$ lines each contain three space-separated integers $u$ , $v$ and $c$ ( $0<=u,v<=n-1$ , $1<=c<=10^{4}$ ) meaning that $u$ and $v$ are friends and the cost for traveling between $u$ and $v$ is $c$ (paid every time!).
It is again guaranteed that the social network of the input forms a tree.
It is again guaranteed that the social network of the input forms a tree.
输出格式
Assume that the expected cost of the trips is written as an irreducible fraction $a/b$ (that is, $a$ and $b$ are coprime). Then Heidi, the weird cow that she is, asks you to output . (Output a single integer between $0$ and $10^{9}+6$ .)
输入输出样例
输入 #1
3 0 1 10 0 2 20
输出 #1
15
输入 #2
4 0 1 3 0 2 9 0 3 27
输出 #2
13
输入 #3
7 0 1 3 0 5 7 1 2 2 1 3 1 1 4 5 5 6 8
输出 #3
400000019
输入 #4
11 1 0 6646 2 0 8816 3 2 9375 4 2 5950 5 1 8702 6 2 2657 7 2 885 8 7 2660 9 2 5369 10 6 3798
输出 #4
153869806
输入 #5
6 0 1 8 0 2 24 1 3 40 1 4 16 4 5 8
输出 #5
39
In the first example, with probability $1/2$ Heidi will go to $1$ from $0$ , and with probability $1/2$ she will go to $2$ . In the first case the cost would be $10$ , and in the second it would be $20$ . After reaching $1$ or $2$ she will stop, as $1$ and $2$ are leaves of the social tree. Hence, the expected cost she has to pay is $10·1/2+20·1/2=15$ .
In the third example, the expected cost is $81/5$ . You should output $400000019$ .
In her travels, Heidi has learned an intriguing fact about the structure of her social network. She tells you the following: The mysterious determinant that you might be wondering about is such that it does not cause strange errors in your reasonable solution... Did we mention that Heidi is a weird cow?
In the third example, the expected cost is $81/5$ . You should output $400000019$ .
In her travels, Heidi has learned an intriguing fact about the structure of her social network. She tells you the following: The mysterious determinant that you might be wondering about is such that it does not cause strange errors in your reasonable solution... Did we mention that Heidi is a weird cow?
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted