题库练习 Knights
← 上一题 下一题 →

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.

输入格式

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.

输入输出样例

输入 #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
C++ 编辑器
输入
输出