CF460E.Roland and Rose
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Roland loves growing flowers. He has recently grown a beautiful rose at point (0,0) of the Cartesian coordinate system. The rose is so beautiful that Roland is afraid that the evil forces can try and steal it.
To protect the rose, Roland wants to build n watch towers. Let's assume that a tower is a point on the plane at the distance of at most r from the rose. Besides, Roland assumes that the towers should be built at points with integer coordinates and the sum of squares of distances between all pairs of towers must be as large as possible. Note, that Roland may build several towers at the same point, also he may build some of them at point (0,0) .
Help Roland build the towers at the integer points so that the sum of squares of distances between all towers is maximum possible. Note that the distance in this problem is defined as the Euclidian distance between points.
输入格式
The first line contains two integers, n and r (2<=n<=8; 1<=r<=30) .
输出格式
In the first line print an integer — the maximum possible sum of squared distances. In the i -th of the following n lines print two integers, xi,yi — the coordinates of the i -th tower. Each tower must be inside or on the border of the circle with radius r . Note that there may be several towers located at the same point of the plane, also some towers can be located at point (0,0) .
If there are multiple valid optimal arrangements, choose any of them.
输入输出样例
输入#1
4 1
输出#1
16 0 1 0 1 0 -1 0 -1
输入#2
3 6
输出#2
312 0 6 5 -3 -5 -3