码迷,mamicode.com
首页 > 其他好文 > 详细

直角三角形

时间:2015-11-20 22:55:48      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:

Description

There is a right triangle with legs of length a and b. Your task is to determine whether it is possible to locate the triangle on the plane in such a way that none of its sides is parallel to the coordinate axes. All the vertices must have integer coordinates. If there exists such a location, you have to output the appropriate coordinates of vertices.

Input

The first line contains two integers a, b (1 ≤ a, b ≤ 1000), separated by a single space.

Output

In the first line print either "YES" or "NO" (without the quotes) depending on whether the required location exists. If it does, print in the next three lines three pairs of integers — the coordinates of the triangle vertices, one pair per line. The coordinates must be integers, not exceeding 109 in their absolute value.

Sample Input

Input
1 1
Output
NO
Input
5 5
Output
YES
2 1
5 5
-2 4
Input
5 10
Output
YES
-10 4
-2 -2
1 2
思路:取直角顶点在原点。
#include <iostream>
#include <algorithm>
#include <cstring>
#include <cstdio>
#include <cmath>

using namespace std;
int a[1005];

int gcd(int n,int m)
{
    int i,j;
    for(i=n;i>=5;i--)
    {
        if(n%i==0&&m%i==0)
        return i;
    }
    return -1;
}

int main()
{
    int i,j,n,m;
    int k,x,s,flag;
    for(i=1;i<1005;i++)
    a[i]=i*i;
    while(cin>>n>>m)
    {
        flag=0;
        if(n>m)
        {
            int t;
            t=m;
            m=n;
            n=t;
        }
        s=gcd(n,m);
        if(s==-1)
        flag=0;
        else
        {
            for(i=1;i<s;i++)
            {
                k=a[s]-a[i];
                x=sqrt(k);
                if(k==x*x)
                {
                    flag=1;
                    k=i;
                    break;
                }
            }
        }
        if(flag==1)
        {
            cout<<"YES"<<endl;
            if(k!=s*x)
            {
                cout<<(-1)*x*n/s<<" "<<k*n/s<<endl;
                cout<<m/s*k<<" "<<m/s*x<<endl;
            }
            else
            {
                cout<<n/s*k<<" "<<(-1)*x*n/s<<endl;
                cout<<m/s*x<<" "<<m/s*k<<endl;
            }
            cout<<"0"<<" "<<"0"<<endl;
        }
        else
        cout<<"NO"<<endl;
    }
    return 0;
}

 

直角三角形

标签:

原文地址:http://www.cnblogs.com/chen9510/p/4982370.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!