CF1109C.Sasha and a Patient Friend

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Fedya and Sasha are friends, that's why Sasha knows everything about Fedya.

Fedya keeps his patience in an infinitely large bowl. But, unlike the bowl, Fedya's patience isn't infinite, that is why let vv be the number of liters of Fedya's patience, and, as soon as vv becomes equal to 00 , the bowl will burst immediately. There is one tap in the bowl which pumps ss liters of patience per second. Notice that ss can be negative, in that case, the tap pumps out the patience. Sasha can do different things, so he is able to change the tap's speed. All actions that Sasha does can be represented as qq queries. There are three types of queries:

  1. "1 t s" — add a new event, means that starting from the tt -th second the tap's speed will be equal to ss .
  2. "2 t" — delete the event which happens at the tt -th second. It is guaranteed that such event exists.
  3. "3 l r v" — Sasha wonders: if you take all the events for which ltrl \le t \le r and simulate changes of Fedya's patience from the very beginning of the ll -th second till the very beginning of the rr -th second inclusive (the initial volume of patience, at the beginning of the ll -th second, equals to vv liters) then when will be the moment when the bowl will burst. If that does not happen, then the answer will be 1-1 .

Since Sasha does not want to check what will happen when Fedya's patience ends, and he has already come up with the queries, he is asking you to help him and find the answer for each query of the 33 -rd type.

It is guaranteed that at any moment of time, there won't be two events which happen at the same second.

输入格式

The first line contans one integer qq ( 1q1051 \le q \le 10^5 ) — the number of queries.

Each of the next qq lines have one of the following formats:

  • 1 t s ( 1t1091 \le t \le 10^9 , 109s109-10^9 \le s \le 10^9 ), means that a new event is added, which means that starting from the tt -th second the tap's speed will be equal to ss .
  • 2 t ( 1t1091 \le t \le 10^9 ), means that the event which happens at the tt -th second must be deleted. Guaranteed that such exists.
  • 3 l r v ( 1lr1091 \le l \le r \le 10^9 , 0v1090 \le v \le 10^9 ), means that you should simulate the process from the very beginning of the ll -th second till the very beginning of the rr -th second inclusive, and to say when will the bowl burst.

It is guaranteed that tt , ss , ll , rr , vv in all the queries are integers.

Also, it is guaranteed that there is at least one query of the 33 -rd type, and there won't be a query of the 11 -st type with such tt , that there already exists an event which happens at that second tt .

输出格式

For each query of the 33 -rd type, print in a new line the moment when the bowl will burst or print 1-1 if it won't happen.

Your answer will be considered correct if it's absolute or relative error does not exceed 10610^{-6} .

Formally, let your answer be aa , and the jury's answer be bb . Your answer is accepted if and only if abmax(1,b)106\frac{|a - b|}{\max{(1, |b|)}} \le 10^{-6} .

输入输出样例

  • 输入#1

    6
    1 2 1
    1 4 -3
    3 1 6 1
    3 1 6 3
    3 1 6 4
    3 1 6 5
    

    输出#1

    5
    5.666667
    6
    -1
    
  • 输入#2

    10
    1 2 2
    1 4 4
    1 7 -10
    3 2 4 1
    3 5 6 0
    3 1 15 1
    2 4
    3 1 15 1
    1 8 1
    3 1 15 1
    

    输出#2

    -1
    5
    8.7
    8.1
    -1
    
  • 输入#3

    5
    1 1000 9999999
    1 2000 -9999
    3 1000 2000 0
    2 1000
    3 1000 2002 1
    

    输出#3

    1000
    2000.0001
    

说明/提示

In the first example all the queries of the 33 -rd type cover all the events, it's simulation is following:

首页