CF68D.Half-decay tree

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Recently Petya has become keen on physics. Anna V., his teacher noticed Petya's interest and gave him a fascinating physical puzzle — a half-decay tree.

A half-decay tree is a complete binary tree with the height hh . The height of a tree is the length of the path (in edges) from the root to a leaf in the tree. While studying the tree Petya can add electrons to vertices or induce random decay with synchrophasotron. Random decay is a process during which the edges of some path from the root to the random leaf of the tree are deleted. All the leaves are equiprobable. As the half-decay tree is the school property, Petya will return back the deleted edges into the tree after each decay.

After being desintegrated, the tree decomposes into connected components. Charge of each component is the total quantity of electrons placed in vertices of the component. Potential of desintegerated tree is the maximum from the charges of its connected components. Each time before inducing random decay Petya is curious about the mathematical expectation of potential of the tree after being desintegrated.

输入格式

First line will contain two integers hh and qq ( 1<=h<=30,1<=q<=1051<=h<=30,1<=q<=10^{5} ). Next qq lines will contain a query of one of two types:

  • add vv ee Petya adds ee electrons to vertex number vv ( 1<=v<=2h+11,0<=e<=1041<=v<=2^{h+1}-1,0<=e<=10^{4} ). vv and ee are integers.

    The vertices of the tree are numbered in the following way: the root is numbered with 1, the children of the vertex with number xx are numbered with 2x2x and 2x+12x+1 .

  • decayPetya induces tree decay.

输出格式

For each query decay solution you should output the mathematical expectation of potential of the tree after being desintegrated. The absolute or relative error in the answer should not exceed 10410^{-4} .

输入输出样例

  • 输入#1

    1 4
    add 1 3
    add 2 10
    add 3 11
    decay
    

    输出#1

    13.50000000
    
首页