A10528 | Cells Not Under Attack
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Vasya has the square chessboard of size $n×n$ and $m$ rooks. Initially the chessboard is empty. Vasya will consequently put the rooks on the board one after another.
The cell of the field is under rook's attack, if there is at least one rook located in the same row or in the same column with this cell. If there is a rook located in the cell, this cell is also under attack.
You are given the positions of the board where Vasya will put rooks. For each rook you have to determine the number of cells which are not under attack after Vasya puts it on the board.
The cell of the field is under rook's attack, if there is at least one rook located in the same row or in the same column with this cell. If there is a rook located in the cell, this cell is also under attack.
You are given the positions of the board where Vasya will put rooks. For each rook you have to determine the number of cells which are not under attack after Vasya puts it on the board.
输入格式
The first line of the input contains two integers $n$ and $m$ ( $1<=n<=100000$ , $1<=m<=min(100000,n^{2})$ ) — the size of the board and the number of rooks.
Each of the next $m$ lines contains integers $x_{i}$ and $y_{i}$ ( $1<=x_{i},y_{i}<=n$ ) — the number of the row and the number of the column where Vasya will put the $i$ -th rook. Vasya puts rooks on the board in the order they appear in the input. It is guaranteed that any cell will contain no more than one rook.
Each of the next $m$ lines contains integers $x_{i}$ and $y_{i}$ ( $1<=x_{i},y_{i}<=n$ ) — the number of the row and the number of the column where Vasya will put the $i$ -th rook. Vasya puts rooks on the board in the order they appear in the input. It is guaranteed that any cell will contain no more than one rook.
输出格式
Print $m$ integer, the $i$ -th of them should be equal to the number of cells that are not under attack after first $i$ rooks are put.
输入输出样例
输入 #1
3 3 1 1 3 1 2 2
输出 #1
4 2 0
输入 #2
5 2 1 5 5 1
输出 #2
16 9
输入 #3
100000 1 300 400
输出 #3
9999800001
On the picture below show the state of the board after put each of the three rooks. The cells which painted with grey color is not under the attack.


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