B. Nauuo and Chess

题目链接:http://codeforces.com/contest/1173/problem/B

题目

Nauuo is a girl who loves playing chess.

One day she invented a game by herself which needs n chess pieces to play on a m×m chessboard. The rows and columns are numbered from 1 to m. We denote a cell on the intersection of the r-th row and c-th column as (r,c)
The game's goal is to place n chess pieces numbered from 1 to n on the chessboard, the i-th piece lies on (ri,ci), while the following rule is satisfied: for all pairs of pieces i and j, |ri−rj|+|ci−cj|≥|i−j|. Here |x| means the absolute value of x.
However, Nauuo discovered that sometimes she couldn't find a solution because the chessboard was too small.

She wants to find the smallest chessboard on which she can put n

pieces according to the rules.

She also wonders how to place the pieces on such a chessboard. Can you help her?

Input

The only line contains a single integer n(1≤n≤1000) — the number of chess pieces for the game.

Output

The first line contains a single integer — the minimum value of m, where m

is the length of sides of the suitable chessboard.

The i-th of the next n lines contains two integers ri and ci (1≤ri,ci≤m) — the coordinates of the i-th chess piece.
If there are multiple answers, print any.

Example

input

2

output

2
1 1
1 2

题意

给你一个数,你在方格中放这1~n这些数,使得任意两个数a->b在方格中走的格数大于等于|a-b|的值

输出1~n每个数的位置

思路

给你一个表格即可发现规律

1 2    
  3 4  
    5 6
       

行走路径为先向下再向右,两数之间步数与差值都相等

#include<bits/stdc++.h>
using namespace std;
int main()
{ int n;
cin>>n;
cout<<n/+<<endl;
for(int i=;i<=n;i++)
{
cout<<(i+)/<<' '<<i/+<<endl;
} return ;
}

最新文章

  1. Schema
  2. POJ3659 [usaco2008jan_gold]电话网络
  3. Flash Decompiler
  4. google全球地址大全
  5. Java魔法堂:JUnit4使用详解
  6. Android调用系统分享功能以及createChooser的使用
  7. c++ 迭代器库
  8. integer和double的比较.
  9. postgresql创建用户
  10. Android Application plugin
  11. jdk并发包 CopyOnWriteArrayList源代码分析
  12. Linux基本命令总结(五)
  13. Linux修改hostname与免密码登录
  14. Spark启动时的master参数以及Spark的部署方式
  15. 解决SQL Server 2008安装时提示:重新启动计算机 失败
  16. Java开发人员必须掌握的Linux命令(二)
  17. 单例模式多线程安全写法(double-lock-check)
  18. Maven的JAR包仓库,不用再百度搜JAR包了!
  19. SpringMVC系列(十三)异常处理
  20. SpringBoot入门篇--热部署

热门文章

  1. “TNS-03505:无法解析名称”问题解决一例
  2. Go 语言如果按这样改进,能不能火过 Java?
  3. NoSQL Manager for Cassandra 3.2.0.1 带Key
  4. c# Ajax后台动态分页
  5. miniui处理多重子表级联,一次性提交多表数据的ui要点
  6. asp.net文件流下载的代码摘要
  7. MS SQL SERVER搜索某个表的主键所在的列名
  8. Index of /android/repository
  9. WPF TextBlock 文字超长截断并显示省略符号
  10. /\B(?=(?:\d{3})+$)/g 一条令人费解的正则表达式