A13655 | Pawns
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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, \dots$ .
After each of $m$ changes, print one integer — the minimum number of rows which you have to add to make the board good.
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, \dots$ .
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 \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 $m$ lines follow. The $i$ -th line contains two integers $x$ and $y$ ( $1 \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)$ , then you add a pawn to this cell, otherwise — you remove the pawn from this cell.
Then $m$ lines follow. The $i$ -th line contains two integers $x$ and $y$ ( $1 \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)$ , 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
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted