A12896 | Alice and the Doll
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Alice got a new doll these days. It can even walk!
Alice has built a maze for the doll and wants to test it. The maze is a grid with $n$ rows and $m$ columns. There are $k$ obstacles, the $i$ -th of them is on the cell $(x_i, y_i)$ , which means the cell in the intersection of the $x_i$ -th row and the $y_i$ -th column.
However, the doll is clumsy in some ways. It can only walk straight or turn right at most once in the same cell (including the start cell). It cannot get into a cell with an obstacle or get out of the maze.
More formally, there exist $4$ directions, in which the doll can look:
1. The doll looks in the direction along the row from the first cell to the last. While moving looking in this direction the doll will move from the cell $(x, y)$ into the cell $(x, y + 1)$ ;
2. The doll looks in the direction along the column from the first cell to the last. While moving looking in this direction the doll will move from the cell $(x, y)$ into the cell $(x + 1, y)$ ;
3. The doll looks in the direction along the row from the last cell to first. While moving looking in this direction the doll will move from the cell $(x, y)$ into the cell $(x, y - 1)$ ;
4. The doll looks in the direction along the column from the last cell to the first. While moving looking in this direction the doll will move from the cell $(x, y)$ into the cell $(x - 1, y)$ .
.Standing in some cell the doll can move into the cell in the direction it looks or it can turn right once. Turning right once, the doll switches it's direction by the following rules: $1 \to 2$ , $2 \to 3$ , $3 \to 4$ , $4 \to 1$ . Standing in one cell, the doll can make at most one turn right.
Now Alice is controlling the doll's moves. She puts the doll in of the cell $(1, 1)$ (the upper-left cell of the maze). Initially, the doll looks to the direction $1$ , so along the row from the first cell to the last. She wants to let the doll walk across all the cells without obstacles exactly once and end in any place. Can it be achieved?
Alice has built a maze for the doll and wants to test it. The maze is a grid with $n$ rows and $m$ columns. There are $k$ obstacles, the $i$ -th of them is on the cell $(x_i, y_i)$ , which means the cell in the intersection of the $x_i$ -th row and the $y_i$ -th column.
However, the doll is clumsy in some ways. It can only walk straight or turn right at most once in the same cell (including the start cell). It cannot get into a cell with an obstacle or get out of the maze.
More formally, there exist $4$ directions, in which the doll can look:
1. The doll looks in the direction along the row from the first cell to the last. While moving looking in this direction the doll will move from the cell $(x, y)$ into the cell $(x, y + 1)$ ;
2. The doll looks in the direction along the column from the first cell to the last. While moving looking in this direction the doll will move from the cell $(x, y)$ into the cell $(x + 1, y)$ ;
3. The doll looks in the direction along the row from the last cell to first. While moving looking in this direction the doll will move from the cell $(x, y)$ into the cell $(x, y - 1)$ ;
4. The doll looks in the direction along the column from the last cell to the first. While moving looking in this direction the doll will move from the cell $(x, y)$ into the cell $(x - 1, y)$ .
.Standing in some cell the doll can move into the cell in the direction it looks or it can turn right once. Turning right once, the doll switches it's direction by the following rules: $1 \to 2$ , $2 \to 3$ , $3 \to 4$ , $4 \to 1$ . Standing in one cell, the doll can make at most one turn right.
Now Alice is controlling the doll's moves. She puts the doll in of the cell $(1, 1)$ (the upper-left cell of the maze). Initially, the doll looks to the direction $1$ , so along the row from the first cell to the last. She wants to let the doll walk across all the cells without obstacles exactly once and end in any place. Can it be achieved?
输入格式
The first line contains three integers $n$ , $m$ and $k$ , separated by spaces ( $1 \leq n,m \leq 10^5, 0 \leq k \leq 10^5$ ) — the size of the maze and the number of obstacles.
Next $k$ lines describes the obstacles, the $i$ -th line contains two integer numbers $x_i$ and $y_i$ , separated by spaces ( $1 \leq x_i \leq n,1 \leq y_i \leq m$ ), which describes the position of the $i$ -th obstacle.
It is guaranteed that no two obstacles are in the same cell and no obstacle is in cell $(1, 1)$ .
Next $k$ lines describes the obstacles, the $i$ -th line contains two integer numbers $x_i$ and $y_i$ , separated by spaces ( $1 \leq x_i \leq n,1 \leq y_i \leq m$ ), which describes the position of the $i$ -th obstacle.
It is guaranteed that no two obstacles are in the same cell and no obstacle is in cell $(1, 1)$ .
输出格式
Print 'Yes' (without quotes) if the doll can walk across all the cells without obstacles exactly once by the rules, described in the statement.
If it is impossible to walk across the maze by these rules print 'No' (without quotes).
If it is impossible to walk across the maze by these rules print 'No' (without quotes).
输入输出样例
输入 #1
3 3 2 2 2 2 1
输出 #1
Yes
输入 #2
3 3 2 3 1 2 2
输出 #2
No
输入 #3
3 3 8 1 2 1 3 2 1 2 2 2 3 3 1 3 2 3 3
输出 #3
Yes
Here is the picture of maze described in the first example:
In the first example, the doll can walk in this way:
- The doll is in the cell $(1, 1)$ , looks to the direction $1$ . Move straight;
- The doll is in the cell $(1, 2)$ , looks to the direction $1$ . Move straight;
- The doll is in the cell $(1, 3)$ , looks to the direction $1$ . Turn right;
- The doll is in the cell $(1, 3)$ , looks to the direction $2$ . Move straight;
- The doll is in the cell $(2, 3)$ , looks to the direction $2$ . Move straight;
- The doll is in the cell $(3, 3)$ , looks to the direction $2$ . Turn right;
- The doll is in the cell $(3, 3)$ , looks to the direction $3$ . Move straight;
- The doll is in the cell $(3, 2)$ , looks to the direction $3$ . Move straight;
- The doll is in the cell $(3, 1)$ , looks to the direction $3$ . The goal is achieved, all cells of the maze without obstacles passed exactly once.
In the first example, the doll can walk in this way:
- The doll is in the cell $(1, 1)$ , looks to the direction $1$ . Move straight;
- The doll is in the cell $(1, 2)$ , looks to the direction $1$ . Move straight;
- The doll is in the cell $(1, 3)$ , looks to the direction $1$ . Turn right;
- The doll is in the cell $(1, 3)$ , looks to the direction $2$ . Move straight;
- The doll is in the cell $(2, 3)$ , looks to the direction $2$ . Move straight;
- The doll is in the cell $(3, 3)$ , looks to the direction $2$ . Turn right;
- The doll is in the cell $(3, 3)$ , looks to the direction $3$ . Move straight;
- The doll is in the cell $(3, 2)$ , looks to the direction $3$ . Move straight;
- The doll is in the cell $(3, 1)$ , looks to the direction $3$ . The goal is achieved, all cells of the maze without obstacles passed exactly once.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted