codeforces 407C Triangle

本文探讨了如何确定一个直角三角形是否可以放置在二维平面上,使其边不平行于坐标轴,并提供了具体的实现算法。

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

题意:给出一个直角三角形的两条边长a、b,看能否将这个三角形放到一个二维平面内,使得三条边都不能平行于坐标轴,如果能输出三个点的坐标,否则输出NO

把直角顶点放在(0,0)会更好做;首先,看两个边长是不是都能成为两个整数的平方和的开根号(可能会有多个!!),然后判断以这两个边为斜边的直角三角形是不是能想似,最后就看直角三角形最后一条边是否是平行于坐标轴的。

#include <iostream>
#include <cstdio>
using namespace std;
int main()
{
    int a,b,h1[10],l1[10],h2[10],l2[10],flag1=0,flag2=0;
    cin>>a>>b;
    for(int i=1; i<1000; i++)
    {
        for(int j=i; j<1000; j++)
        {
            if(i*i+j*j==a*a)
            {
                h1[flag1]=i;
                l1[flag1]=j;
                flag1++;
            }
            if(i*i+j*j==b*b)
            {
                h2[flag2]=i;
                l2[flag2]=j;
                flag2++;
            }
        }
    }
    int t=0;
    if(flag1==0||flag2==0)
        cout<<"NO"<<endl;
    else
    {
        for(int i=0; i<flag1; i++)
        {
            for(int j=0; j<flag2; j++)
            {
                if(1.0*h1[i]/h2[j]==1.0*l1[i]/l2[j])
                {
                    if(h1[i]!=l2[j])
                    {
                        cout<<"YES"<<endl;
                        cout<<0<<" "<<0<<endl;
                        cout<<l1[i]<<" "<<h1[i]<<endl;
                        cout<<0-h2[j]<<" "<<l2[j]<<endl;
                        t=1;
                        break;
                    }
                    else if(h2[j]!=l1[i])
                    {
                        cout<<"YES"<<endl;
                        cout<<0<<" "<<0<<endl;
                        cout<<l2[j]<<" "<<h2[j]<<endl;
                        cout<<0-h1[i]<<" "<<l1[i]<<endl;
                        t=1;
                        break;
                    }
                }
            }
            if(t==1)
                break;
        }
        if(t==0)
            cout<<"NO"<<endl;
    }
    return 0;
}
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值