CodeForces 407A-Triangle【模拟】
A. Triangle
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output
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.
Examples
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
解题思路:
题目就是给出两个边长,我们要找到直角三角形的三个点,这个三角形的边不平行于xy轴。
#include<stdio.h>
#include<string.h>
#include<cmath>
#include<algorithm>
using namespace std;
int main()
{
int a,b;
while(scanf("%d%d",&a,&b)!=EOF)
{
int flag=0;
int ax,ay,bx,by;
for(ax=1;ax<a;ax++)
{
for(bx=1;bx<b;bx++)
{
ay=(int)sqrt(a*a-ax*ax);
by=(int)sqrt(b*b-bx*bx);
if(ax*ax+ay*ay==a*a&&bx*bx+by*by==b*b)
{
if(ax*bx==ay*by)
{
if(ax!=bx)
{
flag=1;
break;
}
}
}
}
if(flag)
break;
}
if(!flag)
printf("NO\n");
else
{
printf("YES\n");
printf("0 0\n");
printf("%d %d\n",ax,-ay);
printf("%d %d\n",bx,by);
}
}
return 0;
}
还没有评论,来说两句吧...