CF1373G.Pawns
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given a chessboard consisting of n rows and n columns. Rows are numbered from bottom to top from 1 to n . Columns are numbered from left to right from 1 to n . The cell at the intersection of the x -th column and the y -th row is denoted as (x,y) . Furthermore, the k -th column is a special column.
Initially, the board is empty. There are m changes to the board. During the i -th change one pawn is added or removed from the board. The current board is good if we can move all pawns to the special column by the followings rules:
- Pawn in the cell (x,y) can be moved to the cell (x,y+1) , (x−1,y+1) or (x+1,y+1) ;
- You can make as many such moves as you like;
- Pawns can not be moved outside the chessboard;
- Each cell can not contain more than one pawn.
The current board may not always be good. To fix it, you can add new rows to the board. New rows are added at the top, i. e. they will have numbers n+1,n+2,n+3,… .
After each of m changes, print one integer — the minimum number of rows which you have to add to make the board good.
输入格式
The first line contains three integers n , k and m ( 1≤n,m≤2⋅105;1≤k≤n ) — the size of the board, the index of the special column and the number of changes respectively.
Then m lines follow. The i -th line contains two integers x and y ( 1≤x,y≤n ) — the index of the column and the index of the row respectively. If there is no pawn in the cell (x,y) , then you add a pawn to this cell, otherwise — you remove the pawn from this cell.
输出格式
After each change print one integer — the minimum number of rows which you have to add to make the board good.
输入输出样例
输入#1
5 3 5 4 4 3 5 2 4 3 4 3 5
输出#1
0 1 2 2 1