A12256 | Knights
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Ivan places knights on infinite chessboard. Initially there are $n$ knights. If there is free cell which is under attack of at least $4$ knights then he places new knight in this cell. Ivan repeats this until there are no such free cells. One can prove that this process is finite. One can also prove that position in the end does not depend on the order in which new knights are placed.
Ivan asked you to find initial placement of exactly $n$ knights such that in the end there will be at least $\lfloor \frac{n^{2}}{10} \rfloor$ knights.
Ivan asked you to find initial placement of exactly $n$ knights such that in the end there will be at least $\lfloor \frac{n^{2}}{10} \rfloor$ knights.
输入格式
The only line of input contains one integer $n$ ( $1 \le n \le 10^{3}$ ) — number of knights in the initial placement.
输出格式
Print $n$ lines. Each line should contain $2$ numbers $x_{i}$ and $y_{i}$ ( $-10^{9} \le x_{i}, \,\, y_{i} \le 10^{9}$ ) — coordinates of $i$ -th knight. For all $i \ne j$ , $(x_{i}, \,\, y_{i}) \ne (x_{j}, \,\, y_{j})$ should hold. In other words, all knights should be in different cells.
It is guaranteed that the solution exists.
It is guaranteed that the solution exists.
输入输出样例
输入 #1
4
输出 #1
1 1 3 1 1 5 4 4
输入 #2
7
输出 #2
2 1 1 2 4 1 5 2 2 6 5 7 6 6
Let's look at second example:

Green zeroes are initial knights. Cell $(3, \,\, 3)$ is under attack of $4$ knights in cells $(1, \,\, 2)$ , $(2, \,\, 1)$ , $(4, \,\, 1)$ and $(5, \,\, 2)$ , therefore Ivan will place a knight in this cell. Cell $(4, \,\, 5)$ is initially attacked by only $3$ knights in cells $(2, \,\, 6)$ , $(5, \,\, 7)$ and $(6, \,\, 6)$ . But new knight in cell $(3, \,\, 3)$ also attacks cell $(4, \,\, 5)$ , now it is attacked by $4$ knights and Ivan will place another knight in this cell. There are no more free cells which are attacked by $4$ or more knights, so the process stops. There are $9$ knights in the end, which is not less than $\lfloor \frac{7^{2}}{10} \rfloor = 4$ .

Green zeroes are initial knights. Cell $(3, \,\, 3)$ is under attack of $4$ knights in cells $(1, \,\, 2)$ , $(2, \,\, 1)$ , $(4, \,\, 1)$ and $(5, \,\, 2)$ , therefore Ivan will place a knight in this cell. Cell $(4, \,\, 5)$ is initially attacked by only $3$ knights in cells $(2, \,\, 6)$ , $(5, \,\, 7)$ and $(6, \,\, 6)$ . But new knight in cell $(3, \,\, 3)$ also attacks cell $(4, \,\, 5)$ , now it is attacked by $4$ knights and Ivan will place another knight in this cell. There are no more free cells which are attacked by $4$ or more knights, so the process stops. There are $9$ knights in the end, which is not less than $\lfloor \frac{7^{2}}{10} \rfloor = 4$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted