CF1418D.Trash Problem
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Vova decided to clean his room. The room can be represented as the coordinate axis OX . There are n piles of trash in the room, coordinate of the i -th pile is the integer pi . All piles have different coordinates.
Let's define a total cleanup as the following process. The goal of this process is to collect all the piles in no more than two different x coordinates. To achieve this goal, Vova can do several (possibly, zero) moves. During one move, he can choose some x and move all piles from x to x+1 or x−1 using his broom. Note that he can't choose how many piles he will move.
Also, there are two types of queries:
- 0 x — remove a pile of trash from the coordinate x . It is guaranteed that there is a pile in the coordinate x at this moment.
- 1 x — add a pile of trash to the coordinate x . It is guaranteed that there is no pile in the coordinate x at this moment.
Note that it is possible that there are zero piles of trash in the room at some moment.
Vova wants to know the minimum number of moves he can spend if he wants to do a total cleanup before any queries. He also wants to know this number of moves after applying each query. Queries are applied in the given order. Note that the total cleanup doesn't actually happen and doesn't change the state of piles. It is only used to calculate the number of moves.
For better understanding, please read the Notes section below to see an explanation for the first example.
输入格式
The first line of the input contains two integers n and q ( 1≤n,q≤105 ) — the number of piles in the room before all queries and the number of queries, respectively.
The second line of the input contains n distinct integers p1,p2,…,pn ( 1≤pi≤109 ), where pi is the coordinate of the i -th pile.
The next q lines describe queries. The i -th query is described with two integers ti and xi ( 0≤ti≤1;1≤xi≤109 ), where ti is 0 if you need to remove a pile from the coordinate xi and is 1 if you need to add a pile to the coordinate xi . It is guaranteed that for ti=0 there is such pile in the current set of piles and for ti=1 there is no such pile in the current set of piles.
输出格式
Print q+1 integers: the minimum number of moves Vova needs to do a total cleanup before the first query and after each of q queries.
输入输出样例
输入#1
5 6 1 2 6 8 10 1 4 1 9 0 6 0 10 1 100 1 50
输出#1
5 7 7 5 4 8 49
输入#2
5 8 5 1 2 4 3 0 1 0 2 0 3 0 4 0 5 1 1000000000 1 1 1 500000000
输出#2
3 2 1 0 0 0 0 0 499999999
说明/提示
Consider the first example.
Initially, the set of piles is [1,2,6,8,10] . The answer before the first query is 5 because you can move all piles from 1 to 2 with one move, all piles from 10 to 8 with 2 moves and all piles from 6 to 8 with 2 moves.
After the first query, the set becomes [1,2,4,6,8,10] . Then the answer is 7 because you can move all piles from 6 to 4 with 2 moves, all piles from 4 to 2 with 2 moves, all piles from 2 to 1 with 1 move and all piles from 10 to 8 with 2 moves.
After the second query, the set of piles becomes [1,2,4,6,8,9,10] and the answer is the same (and the previous sequence of moves can be applied to the current set of piles).
After the third query, the set of piles becomes [1,2,4,8,9,10] and the answer is 5 because you can move all piles from 1 to 2 with 1 move, all piles from 2 to 4 with 2 moves, all piles from 10 to 9 with 1 move and all piles from 9 to 8 with 1 move.
After the fourth query, the set becomes [1,2,4,8,9] and the answer is almost the same (the previous sequence of moves can be applied without moving piles from 10 ).
After the fifth query, the set becomes [1,2,4,8,9,100] . You can move all piles from 1 and further to 9 and keep 100 at its place. So the answer is 8 .
After the sixth query, the set becomes [1,2,4,8,9,50,100] . The answer is 49 and can be obtained with almost the same sequence of moves as after the previous query. The only difference is that you need to move all piles from 50 to 9 too.