305638: CF1067C. Knights

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Knights

题意翻译

题目描述 有一个无限大的网格,初始有$n$个国际象棋马,如果某一个格子没有放马且能够被至少$4$个马经一步走到,那么那一个格子也会放一个马。可以证明操作次数是有限的,且操作完成后的棋盘与初始的马的放置顺序无关。求一种初始$n$个马的放置方案使得上述操作完成后棋盘上至少有$\lfloor \frac{n^2}{10} \rfloor$个马 输入数据 一行一个正整数$n(1 \leq n \leq 10^3)$表示初始的马的数量 输出数据 $n$行,每行对应一个放马的位置$(x_i,y_i)$,输出应该满足$|x_i|,|y_i| \leq 10^9$且对于任意$i \neq j , (x_i,y_i) \neq (x_j , y_j)$

题目描述

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

说明

Let's look at second example: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1067C/1b1831e33b9c7fd1ae942c44032d9f6c6e603132.png) 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 $ .

Input

题意翻译

题目描述 有一个无限大的网格,初始有$n$个国际象棋马,如果某一个格子没有放马且能够被至少$4$个马经一步走到,那么那一个格子也会放一个马。可以证明操作次数是有限的,且操作完成后的棋盘与初始的马的放置顺序无关。求一种初始$n$个马的放置方案使得上述操作完成后棋盘上至少有$\lfloor \frac{n^2}{10} \rfloor$个马 输入数据 一行一个正整数$n(1 \leq n \leq 10^3)$表示初始的马的数量 输出数据 $n$行,每行对应一个放马的位置$(x_i,y_i)$,输出应该满足$|x_i|,|y_i| \leq 10^9$且对于任意$i \neq j , (x_i,y_i) \neq (x_j , y_j)$

加入题单

上一题 下一题 算法标签: