CF939E.Maximize!

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given a multiset SS consisting of positive integers (initially empty). There are two kind of queries:

  1. Add a positive integer to SS , the newly added integer is not less than any number in it.
  2. Find a subset ss of the set SS such that the value is maximum possible. Here max(s)max(s) means maximum value of elements in ss , — the average value of numbers in ss . Output this maximum possible value of .

输入格式

The first line contains a single integer QQ ( 1<=Q<=51051<=Q<=5·10^{5} ) — the number of queries.

Each of the next QQ lines contains a description of query. For queries of type 11 two integers 11 and xx are given, where xx ( 1<=x<=1091<=x<=10^{9} ) is a number that you should add to SS . It's guaranteed that xx is not less than any number in SS . For queries of type 22 , a single integer 22 is given.

It's guaranteed that the first query has type 11 , i. e. SS is not empty when a query of type 22 comes.

输出格式

Output the answer for each query of the second type in the order these queries are given in input. Each number should be printed in separate line.

Your answer is considered correct, if each of your answers has absolute or relative error not greater than 10610^{-6} .

Formally, let your answer be aa , and the jury's answer be bb . Your answer is considered correct if .

输入输出样例

  • 输入#1

    6
    1 3
    2
    1 4
    2
    1 8
    2
    

    输出#1

    0.0000000000
    0.5000000000
    3.0000000000
    
  • 输入#2

    4
    1 1
    1 4
    1 5
    2
    

    输出#2

    2.0000000000
    
首页