A16003 | Great Grids
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
An $n \times m$ grid of characters is called great if it satisfies these three conditions:
- Each character is either 'A', 'B', or 'C'.
- Every $2 \times 2$ contiguous subgrid contains all three different letters.
- Any two cells that share a common edge contain different letters.
Let $(x,y)$ denote the cell in the $x$ -th row from the top and $y$ -th column from the left.
You want to construct a great grid that satisfies $k$ constraints. Each constraint consists of two cells, $(x_{i,1},y_{i,1})$ and $(x_{i,2},y_{i,2})$ , that share exactly one corner. You want your great grid to have the same letter in cells $(x_{i,1},y_{i,1})$ and $(x_{i,2},y_{i,2})$ .
Determine whether there exists a great grid satisfying all the constraints.
- Each character is either 'A', 'B', or 'C'.
- Every $2 \times 2$ contiguous subgrid contains all three different letters.
- Any two cells that share a common edge contain different letters.
Let $(x,y)$ denote the cell in the $x$ -th row from the top and $y$ -th column from the left.
You want to construct a great grid that satisfies $k$ constraints. Each constraint consists of two cells, $(x_{i,1},y_{i,1})$ and $(x_{i,2},y_{i,2})$ , that share exactly one corner. You want your great grid to have the same letter in cells $(x_{i,1},y_{i,1})$ and $(x_{i,2},y_{i,2})$ .
Determine whether there exists a great grid satisfying all the constraints.
输入格式
Each test contains multiple test cases. The first line contains the number of test cases $t$ ( $1 \le t \le 10^3$ ). The description of the test cases follows.
The first line of each test case contains three integers, $n$ , $m$ , and $k$ ( $2 \le n,m \le 2 \cdot 10^3$ , $1 \le k \le 4 \cdot 10^3$ ).
Each of the next $k$ lines contains four integers, $x_{i,1}$ , $y_{i,1}$ , $x_{i,2}$ , and $y_{i,2}$ ( $1 \le x_{i,1} < x_{i,2} \le n$ , $1 \le y_{i,1},y_{i,2} \le m$ ). It is guaranteed that either $(x_{i,2},y_{i,2}) = (x_{i,1}+1,y_{i,1}+1)$ or $(x_{i,2},y_{i,2}) = (x_{i,1}+1,y_{i,1}-1)$ .
The pairs of cells are pairwise distinct, i.e. for all $1 \le i < j \le k$ , it is not true that $x_{i,1} = x_{j,1}$ , $y_{i,1} = y_{j,1}$ , $x_{i,2} = x_{j,2}$ , and $y_{i,2} = y_{j,2}$ .
It is guaranteed that the sum of $n$ over all test cases does not exceed $2 \cdot 10^3$ .
It is guaranteed that the sum of $m$ over all test cases does not exceed $2 \cdot 10^3$ .
It is guaranteed that the sum of $k$ over all test cases does not exceed $4 \cdot 10^3$ .
The first line of each test case contains three integers, $n$ , $m$ , and $k$ ( $2 \le n,m \le 2 \cdot 10^3$ , $1 \le k \le 4 \cdot 10^3$ ).
Each of the next $k$ lines contains four integers, $x_{i,1}$ , $y_{i,1}$ , $x_{i,2}$ , and $y_{i,2}$ ( $1 \le x_{i,1} < x_{i,2} \le n$ , $1 \le y_{i,1},y_{i,2} \le m$ ). It is guaranteed that either $(x_{i,2},y_{i,2}) = (x_{i,1}+1,y_{i,1}+1)$ or $(x_{i,2},y_{i,2}) = (x_{i,1}+1,y_{i,1}-1)$ .
The pairs of cells are pairwise distinct, i.e. for all $1 \le i < j \le k$ , it is not true that $x_{i,1} = x_{j,1}$ , $y_{i,1} = y_{j,1}$ , $x_{i,2} = x_{j,2}$ , and $y_{i,2} = y_{j,2}$ .
It is guaranteed that the sum of $n$ over all test cases does not exceed $2 \cdot 10^3$ .
It is guaranteed that the sum of $m$ over all test cases does not exceed $2 \cdot 10^3$ .
It is guaranteed that the sum of $k$ over all test cases does not exceed $4 \cdot 10^3$ .
输出格式
For each test case, output "YES" if a great grid satisfying all the constraints exists and "NO" otherwise.
You can output the answer in any case (upper or lower). For example, the strings "yEs", "yes", "Yes", and "YES" will be recognized as positive responses.
You can output the answer in any case (upper or lower). For example, the strings "yEs", "yes", "Yes", and "YES" will be recognized as positive responses.
输入输出样例
输入 #1
4 3 4 4 1 1 2 2 2 1 3 2 1 4 2 3 2 3 3 2 2 7 2 1 1 2 2 1 2 2 1 8 5 4 1 2 2 1 1 5 2 4 7 1 8 2 7 4 8 5 8 5 4 1 2 2 1 1 5 2 4 7 1 8 2 7 5 8 4
输出 #1
YES NO YES NO
In the first test case, the following great grid satisfies all the constraints:
BABCCBCAACABIn the second test case, the two constraints imply that cells $(1,1)$ and $(2,2)$ have the same letter and cells $(1,2)$ and $(2,1)$ have the same letter, which makes it impossible for the only $2 \times 2$ subgrid to contain all three different letters.
BABCCBCAACABIn the second test case, the two constraints imply that cells $(1,1)$ and $(2,2)$ have the same letter and cells $(1,2)$ and $(2,1)$ have the same letter, which makes it impossible for the only $2 \times 2$ subgrid to contain all three different letters.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted