CodeForces-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


题意:

给出图形的朝向和每一段的长度,求图形中的个各个点的坐标


题解:

尝试用了最笨的方法去求解,调试了很久,还是过不去,后来找到了这种非常好的方法:利用向量的运算来实现点的坐标的定位

个人向量知识学的不太好,只是大约理解了这个方法....

注意分别处理点的方向和方向向量在同一个方向上和与之垂直的情况。


#include<stdio.h>
#include<math.h>
using namespace std;
double a,b,c,d;
struct point
{
    double x,y;//点
}p,v,s[10];
double sinx,cosx;//控制方向
int main()
{
    //freopen("shuju.txt","r",stdin);
    while(~scanf("%lf%lf%lf%lf",&p.x,&p.y,&v.x,&v.y))//重要位置
    {
        scanf("%lf%lf%lf%lf",&a,&b,&c,&d);
        double tp=sqrt(v.x*v.x+v.y*v.y);
        cosx=v.x/tp;sinx=v.y/tp;//单位向量表述方向 
		a/=2.0;c/=2.0;
		s[0].x=p.x+b*cosx;s[0].y=p.y+b*sinx;
		s[1].x=p.x-a*sinx;s[1].y=p.y+a*cosx;
		s[6].x=p.x+a*sinx;s[6].y=p.y-a*cosx;
		s[2].x=p.x-c*sinx;s[2].y=p.y+c*cosx;
		s[5].x=p.x+c*sinx;s[5].y=p.y-c*cosx;
		s[3].x=s[2].x-d*cosx;s[3].y+=s[2].y-d*sinx;
		s[4].x=s[5].x-d*cosx;s[4].y=s[5].y-d*sinx;
        for(int i=0;i<7;++i)
        {
            printf("%.10f %.10f\n",s[i].x,s[i].y);
        }
    }
    return 0;
}


CodeForces - 616D是一个关于找到一个序列中最长的第k好子段的起始位置和结束位置的问题。给定一个长度为n的序列和一个整数k,需要找到一个子段,该子段中不超过k个不同的数字。题目要求输出这个序列最长的第k好子段的起始位置和终止位置。 解决这个问题的方法有两种。第一种方法是使用尺取算法,通过维护一个滑动窗口来记录\[l,r\]中不同数的个数。每次如果这个数小于k,就将r向右移动一位;如果已经大于k,则将l向右移动一位,直到个数不大于k。每次更新完r之后,判断r-l+1是否比已有答案更优来更新答案。这种方法的时间复杂度为O(n)。 第二种方法是使用枚举r和双指针的方法。通过维护一个最小的l,满足\[l,r\]最多只有k种数。使用一个map来判断数的种类。遍历序列,如果当前数字在map中不存在,则将种类数sum加一;如果sum大于k,则将l向右移动一位,直到sum不大于k。每次更新完r之后,判断i-l+1是否大于等于y-x+1来更新答案。这种方法的时间复杂度为O(n)。 以上是两种解决CodeForces - 616D问题的方法。具体的代码实现可以参考引用\[1\]和引用\[2\]中的代码。 #### 引用[.reference_title] - *1* [CodeForces 616 D. Longest k-Good Segment(尺取)](https://blog.csdn.net/V5ZSQ/article/details/50750827)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^koosearch_v1,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* [Codeforces616 D. Longest k-Good Segment(双指针+map)](https://blog.csdn.net/weixin_44178736/article/details/114328999)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^koosearch_v1,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值