A10321 | Bear and Destroying Subtrees
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Limak is a little grizzly bear. He will once attack Deerland but now he can only destroy trees in role-playing games. Limak starts with a tree with one vertex. The only vertex has index $1$ and is a root of the tree.
Sometimes, a game chooses a subtree and allows Limak to attack it. When a subtree is attacked then each of its edges is destroyed with probability , independently of other edges. Then, Limak gets the penalty — an integer equal to the height of the subtree after the attack. The height is defined as the maximum number of edges on the path between the root of the subtree and any vertex in the subtree.
You must handle queries of two types.
- 1 v denotes a query of the first type. A new vertex appears and its parent is $v$ . A new vertex has the next available index (so, new vertices will be numbered $2,3,...$ ).
- 2 v denotes a query of the second type. For a moment let's assume that the game allows Limak to attack a subtree rooted in $v$ . Then, what would be the expected value of the penalty Limak gets after the attack?
In a query of the second type, Limak doesn't actually attack the subtree and thus the query doesn't affect next queries.
Sometimes, a game chooses a subtree and allows Limak to attack it. When a subtree is attacked then each of its edges is destroyed with probability , independently of other edges. Then, Limak gets the penalty — an integer equal to the height of the subtree after the attack. The height is defined as the maximum number of edges on the path between the root of the subtree and any vertex in the subtree.
You must handle queries of two types.
- 1 v denotes a query of the first type. A new vertex appears and its parent is $v$ . A new vertex has the next available index (so, new vertices will be numbered $2,3,...$ ).
- 2 v denotes a query of the second type. For a moment let's assume that the game allows Limak to attack a subtree rooted in $v$ . Then, what would be the expected value of the penalty Limak gets after the attack?
In a query of the second type, Limak doesn't actually attack the subtree and thus the query doesn't affect next queries.
输入格式
The first line of the input contains one integer $q$ ( $1<=q<=500000$ ) — the number of queries.
Then, $q$ lines follow. The $i$ -th of them contains two integers $type_{i}$ and $v_{i}$ ( $1<=type_{i}<=2$ ). If $type_{i}=1$ then $v_{i}$ denotes a parent of a new vertex, while if $type_{i}=2$ then you should print the answer for a subtree rooted in $v_{i}$ .
It's guaranteed that there will be at least $1$ query of the second type, that is, the output won't be empty.
It's guaranteed that just before the $i$ -th query a vertex $v_{i}$ already exists.
Then, $q$ lines follow. The $i$ -th of them contains two integers $type_{i}$ and $v_{i}$ ( $1<=type_{i}<=2$ ). If $type_{i}=1$ then $v_{i}$ denotes a parent of a new vertex, while if $type_{i}=2$ then you should print the answer for a subtree rooted in $v_{i}$ .
It's guaranteed that there will be at least $1$ query of the second type, that is, the output won't be empty.
It's guaranteed that just before the $i$ -th query a vertex $v_{i}$ already exists.
输出格式
For each query of the second type print one real number —the expected value of the penalty if Limak attacks the given subtree. 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 .
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
7 1 1 1 1 2 1 1 2 1 3 2 2 2 1
输出 #1
0.7500000000 0.5000000000 1.1875000000
输入 #2
8 2 1 1 1 1 2 1 3 1 4 2 1 1 4 2 1
输出 #2
0.0000000000 0.9375000000 0.9687500000
Below, you can see the drawing for the first sample. Red circles denote queries of the second type.


C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted