Beautiful Sets of Points CodeForces

Posted acmloser

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Beautiful Sets of Points CodeForces相关的知识,希望对你有一定的参考价值。

原题链接
考察:构造
思路:
  可以发现(i,i)点彼此距离为sqrt(2).我们构造彼此距离差1的点即可

Code

#include <iostream> 
#include <cstring>
using namespace std;
int n,m;
int main()
{
	while(scanf("%d%d",&n,&m)!=EOF)
	{
		int s = min(n+1,m+1);
		printf("%d\\n",s);
		for(int i=0;i<s;i++)
		  printf("%d %d\\n",i,s-i-1);
	}
	return 0;
}

以上是关于Beautiful Sets of Points CodeForces的主要内容,如果未能解决你的问题,请参考以下文章

Beautiful Soup:4 kinds of objects

Beautiful of programming

[CF403D]Beautiful Pairs of Numbers

2019ICPC南京网络赛A题 The beautiful values of the palace(三维偏序)

Three Key Points of Success 成功三要素

[Regex Expression] Find Sets of Characters