A12765 | Tolik and His Uncle
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
This morning Tolik has understood that while he was sleeping he had invented an incredible problem which will be a perfect fit for Codeforces! But, as a "Discuss tasks" project hasn't been born yet (in English, well), he decides to test a problem and asks his uncle.
After a long time thinking, Tolik's uncle hasn't any ideas on how to solve it. But, he doesn't want to tell Tolik about his inability to solve it, so he hasn't found anything better than asking you how to solve this task.
In this task you are given a cell field $n \cdot m$ , consisting of $n$ rows and $m$ columns, where point's coordinates $(x, y)$ mean it is situated in the $x$ -th row and $y$ -th column, considering numeration from one ( $1 \leq x \leq n, 1 \leq y \leq m$ ). Initially, you stand in the cell $(1, 1)$ . Every move you can jump from cell $(x, y)$ , which you stand in, by any non-zero vector $(dx, dy)$ , thus you will stand in the $(x+dx, y+dy)$ cell. Obviously, you can't leave the field, but also there is one more important condition — you're not allowed to use one vector twice. Your task is to visit each cell of the field exactly once (the initial cell is considered as already visited).
Tolik's uncle is a very respectful person. Help him to solve this task!
After a long time thinking, Tolik's uncle hasn't any ideas on how to solve it. But, he doesn't want to tell Tolik about his inability to solve it, so he hasn't found anything better than asking you how to solve this task.
In this task you are given a cell field $n \cdot m$ , consisting of $n$ rows and $m$ columns, where point's coordinates $(x, y)$ mean it is situated in the $x$ -th row and $y$ -th column, considering numeration from one ( $1 \leq x \leq n, 1 \leq y \leq m$ ). Initially, you stand in the cell $(1, 1)$ . Every move you can jump from cell $(x, y)$ , which you stand in, by any non-zero vector $(dx, dy)$ , thus you will stand in the $(x+dx, y+dy)$ cell. Obviously, you can't leave the field, but also there is one more important condition — you're not allowed to use one vector twice. Your task is to visit each cell of the field exactly once (the initial cell is considered as already visited).
Tolik's uncle is a very respectful person. Help him to solve this task!
输入格式
The first and only line contains two positive integers $n, m$ ( $1 \leq n \cdot m \leq 10^{6}$ ) — the number of rows and columns of the field respectively.
输出格式
Print "-1" (without quotes) if it is impossible to visit every cell exactly once.
Else print $n \cdot m$ pairs of integers, $i$ -th from them should contain two integers $x_i, y_i$ ( $1 \leq x_i \leq n, 1 \leq y_i \leq m$ ) — cells of the field in order of visiting, so that all of them are distinct and vectors of jumps between them are distinct too.
Notice that the first cell should have $(1, 1)$ coordinates, according to the statement.
Else print $n \cdot m$ pairs of integers, $i$ -th from them should contain two integers $x_i, y_i$ ( $1 \leq x_i \leq n, 1 \leq y_i \leq m$ ) — cells of the field in order of visiting, so that all of them are distinct and vectors of jumps between them are distinct too.
Notice that the first cell should have $(1, 1)$ coordinates, according to the statement.
输入输出样例
输入 #1
2 3
输出 #1
1 1 1 3 1 2 2 2 2 3 2 1
输入 #2
1 1
输出 #2
1 1
The vectors from the first example in the order of making jumps are $(0, 2), (0, -1), (1, 0), (0, 1), (0, -2)$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted