A13755 | Boboniu Plays Chess
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Boboniu likes playing chess with his employees. As we know, no employee can beat the boss in the chess game, so Boboniu has never lost in any round.
You are a new applicant for his company. Boboniu will test you with the following chess question:
Consider a $n\times m$ grid (rows are numbered from $1$ to $n$ , and columns are numbered from $1$ to $m$ ). You have a chess piece, and it stands at some cell $(S_x,S_y)$ which is not on the border (i.e. $2 \le S_x \le n-1$ and $2 \le S_y \le m-1$ ).
From the cell $(x,y)$ , you can move your chess piece to $(x,y')$ ( $1\le y'\le m, y' \neq y$ ) or $(x',y)$ ( $1\le x'\le n, x'\neq x$ ). In other words, the chess piece moves as a rook. From the cell, you can move to any cell on the same row or column.
Your goal is to visit each cell exactly once. Can you find a solution?
Note that cells on the path between two adjacent cells in your route are not counted as visited, and it is not required to return to the starting point.
You are a new applicant for his company. Boboniu will test you with the following chess question:
Consider a $n\times m$ grid (rows are numbered from $1$ to $n$ , and columns are numbered from $1$ to $m$ ). You have a chess piece, and it stands at some cell $(S_x,S_y)$ which is not on the border (i.e. $2 \le S_x \le n-1$ and $2 \le S_y \le m-1$ ).
From the cell $(x,y)$ , you can move your chess piece to $(x,y')$ ( $1\le y'\le m, y' \neq y$ ) or $(x',y)$ ( $1\le x'\le n, x'\neq x$ ). In other words, the chess piece moves as a rook. From the cell, you can move to any cell on the same row or column.
Your goal is to visit each cell exactly once. Can you find a solution?
Note that cells on the path between two adjacent cells in your route are not counted as visited, and it is not required to return to the starting point.
输入格式
The only line of the input contains four integers $n$ , $m$ , $S_x$ and $S_y$ ( $3\le n,m\le 100$ , $2 \le S_x \le n-1$ , $2 \le S_y \le m-1$ ) — the number of rows, the number of columns, and the initial position of your chess piece, respectively.
输出格式
You should print $n\cdot m$ lines.
The $i$ -th line should contain two integers $x_i$ and $y_i$ ( $1 \leq x_i \leq n$ , $1 \leq y_i \leq m$ ), denoting the $i$ -th cell that you visited. You should print exactly $nm$ pairs $(x_i, y_i)$ , they should cover all possible pairs $(x_i, y_i)$ , such that $1 \leq x_i \leq n$ , $1 \leq y_i \leq m$ .
We can show that under these constraints there always exists a solution. If there are multiple answers, print any.
The $i$ -th line should contain two integers $x_i$ and $y_i$ ( $1 \leq x_i \leq n$ , $1 \leq y_i \leq m$ ), denoting the $i$ -th cell that you visited. You should print exactly $nm$ pairs $(x_i, y_i)$ , they should cover all possible pairs $(x_i, y_i)$ , such that $1 \leq x_i \leq n$ , $1 \leq y_i \leq m$ .
We can show that under these constraints there always exists a solution. If there are multiple answers, print any.
输入输出样例
输入 #1
3 3 2 2
输出 #1
2 2 1 2 1 3 2 3 3 3 3 2 3 1 2 1 1 1
输入 #2
3 4 2 2
输出 #2
2 2 2 1 2 3 2 4 1 4 3 4 3 3 3 2 3 1 1 1 1 2 1 3
Possible routes for two examples:


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