CF643E.Bear and Destroying Subtrees

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 11 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 vv . A new vertex has the next available index (so, new vertices will be numbered 2,3,...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 vv . 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 qq ( 1<=q<=5000001<=q<=500000 ) — the number of queries.

Then, qq lines follow. The ii -th of them contains two integers typeitype_{i} and viv_{i} ( 1<=typei<=21<=type_{i}<=2 ). If typei=1type_{i}=1 then viv_{i} denotes a parent of a new vertex, while if typei=2type_{i}=2 then you should print the answer for a subtree rooted in viv_{i} .

It's guaranteed that there will be at least 11 query of the second type, that is, the output won't be empty.

It's guaranteed that just before the ii -th query a vertex viv_{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 10610^{-6} .

Namely: let's assume that your answer is aa , and the answer of the jury is bb . 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.

首页