A11191 | The Untended Antiquity
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Adieu l'ami.
Koyomi is helping Oshino, an acquaintance of his, to take care of an open space around the abandoned Eikou Cram School building, Oshino's makeshift residence.
The space is represented by a rectangular grid of $n×m$ cells, arranged into $n$ rows and $m$ columns. The $c$ -th cell in the $r$ -th row is denoted by $(r,c)$ .
Oshino places and removes barriers around rectangular areas of cells. Specifically, an action denoted by " $1\ r_{1}\ c_{1}\ r_{2}\ c_{2}$ " means Oshino's placing barriers around a rectangle with two corners being $(r_{1},c_{1})$ and $(r_{2},c_{2})$ and sides parallel to squares sides. Similarly, " $2\ r_{1}\ c_{1}\ r_{2}\ c_{2}$ " means Oshino's removing barriers around the rectangle. Oshino ensures that no barriers staying on the ground share any common points, nor do they intersect with boundaries of the $n×m$ area.
Sometimes Koyomi tries to walk from one cell to another carefully without striding over barriers, in order to avoid damaging various items on the ground. " $3\ r_{1}\ c_{1}\ r_{2}\ c_{2}$ " means that Koyomi tries to walk from $(r_{1},c_{1})$ to $(r_{2},c_{2})$ without crossing barriers.
And you're here to tell Koyomi the feasibility of each of his attempts.
Koyomi is helping Oshino, an acquaintance of his, to take care of an open space around the abandoned Eikou Cram School building, Oshino's makeshift residence.
The space is represented by a rectangular grid of $n×m$ cells, arranged into $n$ rows and $m$ columns. The $c$ -th cell in the $r$ -th row is denoted by $(r,c)$ .
Oshino places and removes barriers around rectangular areas of cells. Specifically, an action denoted by " $1\ r_{1}\ c_{1}\ r_{2}\ c_{2}$ " means Oshino's placing barriers around a rectangle with two corners being $(r_{1},c_{1})$ and $(r_{2},c_{2})$ and sides parallel to squares sides. Similarly, " $2\ r_{1}\ c_{1}\ r_{2}\ c_{2}$ " means Oshino's removing barriers around the rectangle. Oshino ensures that no barriers staying on the ground share any common points, nor do they intersect with boundaries of the $n×m$ area.
Sometimes Koyomi tries to walk from one cell to another carefully without striding over barriers, in order to avoid damaging various items on the ground. " $3\ r_{1}\ c_{1}\ r_{2}\ c_{2}$ " means that Koyomi tries to walk from $(r_{1},c_{1})$ to $(r_{2},c_{2})$ without crossing barriers.
And you're here to tell Koyomi the feasibility of each of his attempts.
输入格式
The first line of input contains three space-separated integers $n$ , $m$ and $q$ ( $1<=n,m<=2500$ , $1<=q<=100000$ ) — the number of rows and columns in the grid, and the total number of Oshino and Koyomi's actions, respectively.
The following $q$ lines each describes an action, containing five space-separated integers $t$ , $r_{1}$ , $c_{1}$ , $r_{2}$ , $c_{2}$ ( $1<=t<=3$ , $1<=r_{1},r_{2}<=n$ , $1<=c_{1},c_{2}<=m$ ) — the type and two coordinates of an action. Additionally, the following holds depending on the value of $t$ :
- If $t=1$ : $2<=r_{1}<=r_{2}<=n-1$ , $2<=c_{1}<=c_{2}<=m-1$ ;
- If $t=2$ : $2<=r_{1}<=r_{2}<=n-1$ , $2<=c_{1}<=c_{2}<=m-1$ , the specified group of barriers exist on the ground before the removal.
- If $t=3$ : no extra restrictions.
The following $q$ lines each describes an action, containing five space-separated integers $t$ , $r_{1}$ , $c_{1}$ , $r_{2}$ , $c_{2}$ ( $1<=t<=3$ , $1<=r_{1},r_{2}<=n$ , $1<=c_{1},c_{2}<=m$ ) — the type and two coordinates of an action. Additionally, the following holds depending on the value of $t$ :
- If $t=1$ : $2<=r_{1}<=r_{2}<=n-1$ , $2<=c_{1}<=c_{2}<=m-1$ ;
- If $t=2$ : $2<=r_{1}<=r_{2}<=n-1$ , $2<=c_{1}<=c_{2}<=m-1$ , the specified group of barriers exist on the ground before the removal.
- If $t=3$ : no extra restrictions.
输出格式
For each of Koyomi's attempts (actions with $t=3$ ), output one line — containing "Yes" (without quotes) if it's feasible, and "No" (without quotes) otherwise.
输入输出样例
输入 #1
5 6 5 1 2 2 4 5 1 3 3 3 3 3 4 4 1 1 2 2 2 4 5 3 1 1 4 4
输出 #1
No Yes
输入 #2
2500 2500 8 1 549 1279 1263 2189 1 303 795 1888 2432 1 2227 622 2418 1161 3 771 2492 1335 1433 1 2017 2100 2408 2160 3 48 60 798 729 1 347 708 1868 792 3 1940 2080 377 1546
输出 #2
No Yes No
For the first example, the situations of Koyomi's actions are illustrated below.


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