A12464 | Sasha and a Patient Friend
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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 $v$ be the number of liters of Fedya's patience, and, as soon as $v$ becomes equal to $0$ , the bowl will burst immediately. There is one tap in the bowl which pumps $s$ liters of patience per second. Notice that $s$ 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 $q$ queries. There are three types of queries:
1. "1 t s" — add a new event, means that starting from the $t$ -th second the tap's speed will be equal to $s$ .
2. "2 t" — delete the event which happens at the $t$ -th second. It is guaranteed that such event exists.
3. "3 l r v" — Sasha wonders: if you take all the events for which $l \le t \le r$ and simulate changes of Fedya's patience from the very beginning of the $l$ -th second till the very beginning of the $r$ -th second inclusive (the initial volume of patience, at the beginning of the $l$ -th second, equals to $v$ liters) then when will be the moment when the bowl will burst. If that does not happen, then the answer will be $-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 $3$ -rd type.
It is guaranteed that at any moment of time, there won't be two events which happen at the same second.
Fedya keeps his patience in an infinitely large bowl. But, unlike the bowl, Fedya's patience isn't infinite, that is why let $v$ be the number of liters of Fedya's patience, and, as soon as $v$ becomes equal to $0$ , the bowl will burst immediately. There is one tap in the bowl which pumps $s$ liters of patience per second. Notice that $s$ 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 $q$ queries. There are three types of queries:
1. "1 t s" — add a new event, means that starting from the $t$ -th second the tap's speed will be equal to $s$ .
2. "2 t" — delete the event which happens at the $t$ -th second. It is guaranteed that such event exists.
3. "3 l r v" — Sasha wonders: if you take all the events for which $l \le t \le r$ and simulate changes of Fedya's patience from the very beginning of the $l$ -th second till the very beginning of the $r$ -th second inclusive (the initial volume of patience, at the beginning of the $l$ -th second, equals to $v$ liters) then when will be the moment when the bowl will burst. If that does not happen, then the answer will be $-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 $3$ -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 $q$ ( $1 \le q \le 10^5$ ) — the number of queries.
Each of the next $q$ lines have one of the following formats:
- 1 t s ( $1 \le t \le 10^9$ , $-10^9 \le s \le 10^9$ ), means that a new event is added, which means that starting from the $t$ -th second the tap's speed will be equal to $s$ .
- 2 t ( $1 \le t \le 10^9$ ), means that the event which happens at the $t$ -th second must be deleted. Guaranteed that such exists.
- 3 l r v ( $1 \le l \le r \le 10^9$ , $0 \le v \le 10^9$ ), means that you should simulate the process from the very beginning of the $l$ -th second till the very beginning of the $r$ -th second inclusive, and to say when will the bowl burst.
It is guaranteed that $t$ , $s$ , $l$ , $r$ , $v$ in all the queries are integers.
Also, it is guaranteed that there is at least one query of the $3$ -rd type, and there won't be a query of the $1$ -st type with such $t$ , that there already exists an event which happens at that second $t$ .
Each of the next $q$ lines have one of the following formats:
- 1 t s ( $1 \le t \le 10^9$ , $-10^9 \le s \le 10^9$ ), means that a new event is added, which means that starting from the $t$ -th second the tap's speed will be equal to $s$ .
- 2 t ( $1 \le t \le 10^9$ ), means that the event which happens at the $t$ -th second must be deleted. Guaranteed that such exists.
- 3 l r v ( $1 \le l \le r \le 10^9$ , $0 \le v \le 10^9$ ), means that you should simulate the process from the very beginning of the $l$ -th second till the very beginning of the $r$ -th second inclusive, and to say when will the bowl burst.
It is guaranteed that $t$ , $s$ , $l$ , $r$ , $v$ in all the queries are integers.
Also, it is guaranteed that there is at least one query of the $3$ -rd type, and there won't be a query of the $1$ -st type with such $t$ , that there already exists an event which happens at that second $t$ .
输出格式
For each query of the $3$ -rd type, print in a new line the moment when the bowl will burst or print $-1$ if it won't happen.
Your answer will be considered correct if it's absolute or relative error does not exceed $10^{-6}$ .
Formally, let your answer be $a$ , and the jury's answer be $b$ . Your answer is accepted if and only if $\frac{|a - b|}{\max{(1, |b|)}} \le 10^{-6}$ .
Your answer will be considered correct if it's absolute or relative error does not exceed $10^{-6}$ .
Formally, let your answer be $a$ , and the jury's answer be $b$ . Your answer is accepted if and only if $\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 $3$ -rd type cover all the events, it's simulation is following:


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