首页 > 其他 > 详细

直角三角形

时间:2015-11-20 22:55:40      阅读:216      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!