code forces 630 O. Arrow

O. Arrow
time limit per test
0.5 seconds
memory limit per test
64 megabytes
input
standard input
output
standard output

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.

Examples
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
自己画画图就懂了!  在向量的方向上进行其他定点的位置确定!
AC code
#include<stdio.h>
#include<math.h>
int main()
{
	double px,py,vx,vy,a,b,c,d;
	while(scanf("%lf%lf%lf%lf%lf%lf%lf%lf",&px,&py,&vx,&vy,&a,&b,&c,&d)!=EOF)
	{
		double  x[10],y[10];
		double tx=vx/sqrt(vx*vx+vy*vy),ty=vy/sqrt(vx*vx+vy*vy);
		x[1]=b*tx+px;y[1]=b*ty+py;
		x[2]=-a/2*ty+px;y[2]=a/2*tx+py;
		x[7]=a/2*ty+px;y[7]=-a/2*tx+py;
		x[3]=-c/2*ty+px;y[3]=c/2*tx+py;
		x[6]=c/2*ty+px;y[6]=-c/2*tx+py;
		x[4]=x[3]-d*tx;y[4]=y[3]-d*ty;
		x[5]=x[6]-d*tx;y[5]=y[6]-d*ty;
		for(int i=1;i<=7;i++)
		{
			printf("%.10lf %.10lf\n",x[i],y[i]);
		}
	}
	return  0;
}


 
  
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值