C. Beautiful Sets of Points

來源:互聯網
上載者:User
time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

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 ≤ n; 0 ≤ 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.

解題說明:此題有規律可循,首先找出m,n中最小的那個數作為邊界記為min,然後從(0,min)開始迴圈,確保座標和是min即可,直到到(min,0),這樣就能保證任意兩個點之間的距離不為整數,因為任意相鄰點都存在根號2的距離,不相鄰的點之間距離更不為整數,總共有min+1個點。

#include<iostream>#include<map>#include<string>#include<algorithm>#include<cstdio>#include<cmath>using namespace std;int main(){int n,m;int i;scanf("%d %d",&n,&m);if(n<m){m=n;}printf("%d\n",m+1);for(i=0;i<=m;i++){printf("%d %d\n",i,m-i);}return 0;}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.