CodeForces - 630O Arrow (数学几何求点的坐标)

CodeForces - 630O
Time Limit: 500MS Memory Limit: 65536KB 64bit IO Format: %I64d & %I64u

 Status

Description

Petya has recently started working as a programmer in the IT city company that develops computer games.

Besides game mechanics implementation to create a game it is necessary to create tool programs that can be used by game designers to create game levels. Petya's first assignment is to create a tool that allows to paint different arrows on the screen.

A user of this tool will choose a point on the screen, specify a vector (the arrow direction) and vary several parameters to get the required graphical effect. In the first version of the program Petya decided to limit parameters of the arrow by the following: a point with coordinates (px, py), a nonzero vector with coordinates(vx, vy), positive scalars a, b, c, d, a > c.

The produced arrow should have the following properties. The arrow consists of a triangle and a rectangle. The triangle is isosceles with base of length a and altitude of length b perpendicular to the base. The rectangle sides lengths are c and d. Point (px, py) is situated in the middle of the triangle base and in the middle of side of rectangle that has length c. Area of intersection of the triangle and the rectangle is zero. The direction from(px, py) point to the triangle vertex opposite to base containing the point coincides with direction of (vx, vy)vector.

Enumerate the arrow points coordinates in counter-clockwise order starting from the tip.

Input

The only line of the input contains eight integers px, py, vx, vy ( - 1000 ≤ px, py, vx, vy ≤ 1000, vx2 + vy2 > 0), a, b, c, d (1 ≤ a, b, c, d ≤ 1000, a > c).

Output

Output coordinates of the arrow points in counter-clockwise order. Each line should contain two coordinates, first x, then y. Relative or absolute error should not be greater than 10 - 9.

Sample Input

Input
8 8 0 2 8 3 4 5
Output
8.000000000000 11.000000000000
4.000000000000 8.000000000000
6.000000000000 8.000000000000
6.000000000000 3.000000000000
10.000000000000 3.000000000000
10.000000000000 8.000000000000
12.000000000000 8.000000000000

Source

//题意:
给出箭头的中点(px,py),再给出箭头的方向(vx,vy),再给出箭头的四段线段的长度(a,b,c,d),输出箭头的7个坐标。
//思路:
知道题意后,自己画个图找找坐标与方向的关系,做这个题就不难了。
#include<stdio.h>
#include<string.h>
#include<math.h>
#include<algorithm>
#define INF 0x3f3f3f3f
#define ll long long
#define N 10010
#define M 1000000007
using namespace std;
double x[11],y[11];
int main()
{
	double px,py,vx,vy,a,b,c,d;
	int i;
	while(scanf("%lf%lf%lf%lf%lf%lf%lf%lf",&px,&py,&vx,&vy,&a,&b,&c,&d)!=EOF)
	{
		double cosx=vx/sqrt(vx*vx+vy*vy);
		double cosy=vy/sqrt(vx*vx+vy*vy);
		x[1]=px+b*cosx;y[1]=py+b*cosy;
		x[2]=px-(a/2)*cosy;y[2]=py+(a/2)*cosx;
		x[7]=px+(a/2)*cosy;y[7]=py-(a/2)*cosx;
		x[3]=px-(c/2)*cosy;y[3]=py+(c/2)*cosx;
		x[6]=px+(c/2)*cosy;y[6]=py-(c/2)*cosx;
		x[4]=x[3]-d*cosx;y[4]=y[3]-d*cosy;
		x[5]=x[6]-d*cosx;y[5]=y[6]-d*cosy;
		for(i=1;i<=7;i++)
			printf("%.10lf %.10lf\n",x[i],y[i]);
	}
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值