A10929 | Oleg and chess
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Oleg the bank client solves an interesting chess problem: place on $n×n$ chessboard the maximum number of rooks so that they don't beat each other. Of course, no two rooks can share the same cell.
Remind that a rook standing in the cell $(a,b)$ beats a rook standing in the cell $(x,y)$ if and only if $a=x$ or $b=y$ .
Unfortunately (of fortunately?) for Oleg the answer in this problem was always $n$ , so the task bored Oleg soon. He decided to make it more difficult by removing some cells from the board. If a cell is deleted, Oleg can't put a rook there, but rooks do beat each other "through" deleted cells.
Oleg deletes the cells in groups, namely, he repeatedly choose a rectangle with sides parallel to the board sides and deletes all the cells inside the rectangle. Formally, if he chooses a rectangle, lower left cell of which has coordinates $(x_{1},y_{1})$ , and upper right cell of which has coordinates $(x_{2},y_{2})$ , then he deletes all such cells with coordinates $(x,y)$ that $x_{1}<=x<=x_{2}$ and $y_{1}<=y<=y_{2}$ . It is guaranteed that no cell is deleted twice, i.e. the chosen rectangles do not intersect.
This version of the problem Oleg can't solve, and his friend Igor is busy at a conference, so he can't help Oleg.
You are the last hope for Oleg! Help him: given the size of the board and the deleted rectangles find the maximum possible number of rooks that could be placed on the board so that no two rooks beat each other.
Remind that a rook standing in the cell $(a,b)$ beats a rook standing in the cell $(x,y)$ if and only if $a=x$ or $b=y$ .
Unfortunately (of fortunately?) for Oleg the answer in this problem was always $n$ , so the task bored Oleg soon. He decided to make it more difficult by removing some cells from the board. If a cell is deleted, Oleg can't put a rook there, but rooks do beat each other "through" deleted cells.
Oleg deletes the cells in groups, namely, he repeatedly choose a rectangle with sides parallel to the board sides and deletes all the cells inside the rectangle. Formally, if he chooses a rectangle, lower left cell of which has coordinates $(x_{1},y_{1})$ , and upper right cell of which has coordinates $(x_{2},y_{2})$ , then he deletes all such cells with coordinates $(x,y)$ that $x_{1}<=x<=x_{2}$ and $y_{1}<=y<=y_{2}$ . It is guaranteed that no cell is deleted twice, i.e. the chosen rectangles do not intersect.
This version of the problem Oleg can't solve, and his friend Igor is busy at a conference, so he can't help Oleg.
You are the last hope for Oleg! Help him: given the size of the board and the deleted rectangles find the maximum possible number of rooks that could be placed on the board so that no two rooks beat each other.
输入格式
The first line contains single integer $n$ ( $1<=n<=10000$ ) — the size of the board.
The second line contains single integer $q$ ( $0<=q<=10000$ ) — the number of deleted rectangles.
The next $q$ lines contain the information about the deleted rectangles.
Each of these lines contains four integers $x_{1}$ , $y_{1}$ , $x_{2}$ and $y_{2}$ ( $1<=x_{1}<=x_{2}<=n$ , $1<=y_{1}<=y_{2}<=n$ ) — the coordinates of the lower left and the upper right cells of a deleted rectangle.
If is guaranteed that the rectangles do not intersect.
The second line contains single integer $q$ ( $0<=q<=10000$ ) — the number of deleted rectangles.
The next $q$ lines contain the information about the deleted rectangles.
Each of these lines contains four integers $x_{1}$ , $y_{1}$ , $x_{2}$ and $y_{2}$ ( $1<=x_{1}<=x_{2}<=n$ , $1<=y_{1}<=y_{2}<=n$ ) — the coordinates of the lower left and the upper right cells of a deleted rectangle.
If is guaranteed that the rectangles do not intersect.
输出格式
In the only line print the maximum number of rooks Oleg can place on the board so that no two rooks beat each other.
输入输出样例
输入 #1
5 5 1 1 2 1 1 3 1 5 4 1 5 5 2 5 2 5 3 2 3 5
输出 #1
3
输入 #2
8 4 2 2 4 6 1 8 1 8 7 1 8 2 5 4 6 8
输出 #2
8
Here is the board and the example of rooks placement in the first example:


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