CF268C. Beautiful Sets of Points


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
3
0 1
1 2
2 0
input
4 3
output
4
0 3
2 1
3 0
4 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
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值