CF1067C.Knights
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 ⌊10n2⌋ knights.
输入格式
The only line of input contains one integer n ( 1≤n≤103 ) — number of knights in the initial placement.
输出格式
Print n lines. Each line should contain 2 numbers xi and yi ( −109≤xi,yi≤109 ) — coordinates of i -th knight. For all i=j , (xi,yi)=(xj,yj) 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:
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 ⌊1072⌋=4 .