CF1373G.Pawns

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given a chessboard consisting of nn rows and nn columns. Rows are numbered from bottom to top from 11 to nn . Columns are numbered from left to right from 11 to nn . The cell at the intersection of the xx -th column and the yy -th row is denoted as (x,y)(x, y) . Furthermore, the kk -th column is a special column.

Initially, the board is empty. There are mm changes to the board. During the ii -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)(x, y) can be moved to the cell (x,y+1)(x, y + 1) , (x1,y+1)(x - 1, y + 1) or (x+1,y+1)(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,n+1, n+2, n+3, \dots .

After each of mm 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 nn , kk and mm ( 1n,m2105;1kn1 \le n, m \le 2 \cdot 10^5; 1 \le k \le n ) — the size of the board, the index of the special column and the number of changes respectively.

Then mm lines follow. The ii -th line contains two integers xx and yy ( 1x,yn1 \le x, y \le n ) — the index of the column and the index of the row respectively. If there is no pawn in the cell (x,y)(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
首页