CF268C. Beautiful Sets of Points

来源:互联网 发布:兼职开淘宝店赚钱吗 编辑:程序博客网 时间:2024/05/22 01:35

Manao has invented a new mathematical term — a beautiful set of points. He calls a set of points on a plane beautiful if it meets the following conditions:

  1. The coordinates of each point in the set are integers.
  2. For any two points from the set, the distance between them is a non-integer.

Consider all points (x, y) which satisfy the inequations: 0 ≤ x ≤ n0 ≤ y ≤ mx + y > 0. Choose their subset of maximum size such that it is also a beautiful set of points.

Input

The single line contains two space-separated integers n and m (1 ≤ n, m ≤ 100).

Output

In the first line print a single integer — the size k of the found beautiful set. In each of the next k lines print a pair of space-separated integers — the x- and y- coordinates, respectively, of a point from the set.

If there are several optimal solutions, you may print any of them.

Sample test(s)
input
2 2
output
30 11 22 0
input
4 3
output
40 32 13 04 2
Note

Consider the first sample. The distance between points (0, 1) and (1, 2) equals , between (0, 1) and (2, 0) — , between (1, 2) and (2, 0) — . Thus, these points form a beautiful set. You cannot form a beautiful set with more than three points out of the given points. Note that this is not the only solution.


题意:找出最多的点的集合,要求各点坐标为整数且各点间距离不为整数
显然,最多的点数情况为每一行、每一列都被独立用到且与每点的距离不为整数加上第0行或列,最多的情况就是n、m中较小的那个加1。那么,我们可以构造出确定一点后横坐标、纵坐标同时加1,那么距离永远是若干倍的√2。要构造出这样的情况,则从较大数的最大处、较小数的0开始,一个递减、一个递增,则能保证。
#include <iostream>#include <cstdio>#include <cstring>#include <map>#include <cmath>using namespace std;typedef long long ll;int f[10005]; int main(){int n,m;while(~scanf("%d%d", &n, &m)){int t = min(n,m)+1;printf("%d\n", t);if(n >= m){int x = n,y = 0;for(;x>=0 && y<=m;){printf("%d %d\n", x--,y++);}}else{int x = 0,y = m;for(;x<=n && y>=0;){printf("%d %d\n", x++,y--);}}}return 0;}


0 0
原创粉丝点击