0
点赞
收藏
分享

微信扫一扫

CodeForces 248C. Robo-Footballer

未定义变量 2023-03-11 阅读 12


C. Robo-Footballer

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

It's a beautiful April day and Wallace is playing football with his friends. But his friends do not know that Wallace actually stayed home with Gromit and sent them his robotic self instead. Robo-Wallace has several advantages over the other guys. For example, he can hit the ball directly to the specified point. And yet, the notion of a giveaway is foreign to him. The combination of these features makes the Robo-Wallace the perfect footballer — as soon as the ball gets to him, he can just aim and hit the goal. He followed this tactics in the first half of the match, but he hit the goal rarely. The opposing team has a very good goalkeeper who catches most of the balls that fly directly into the goal. But Robo-Wallace is a quick thinker, he realized that he can cheat the goalkeeper. After all, they are playing in a football box with solid walls. Robo-Wallace can kick the ball to the other side, then the goalkeeper will not try to catch the ball. Then, if the ball bounces off the wall and flies into the goal, the goal will at last be scored.

Your task is to help Robo-Wallace to detect a spot on the wall of the football box, to which the robot should kick the ball, so that the ball bounces once and only once off this wall and goes straight to the goal. In the first half of the match Robo-Wallace got a ball in the head and was severely hit. As a result, some of the schemes have been damaged. Because of the damage, Robo-Wallace can only aim to his right wall (Robo-Wallace is standing with his face to the opposing team's goal).

The football box is rectangular. Let's introduce a two-dimensional coordinate system so that point (0, 0) lies in the lower left corner of the field, if you look at the box above. Robo-Wallace is playing for the team, whose goal is to the right. It is an improvised football field, so the gate of Robo-Wallace's rivals may be not in the middle of the left wall.

CodeForces 248C. Robo-Footballer_ci

In the given coordinate system you are given:

  • y1, y2 — the y-coordinates of the side pillars of the goalposts of robo-Wallace's opponents;
  • yw — the y-coordinate of the wall to which Robo-Wallace is aiming;
  • xbyb — the coordinates of the ball's position when it is hit;
  • r — the radius of the ball.

A goal is scored when the center of the ball crosses the OY axis in the given coordinate system between (0, y1) and (0, y2). The ball moves along a straight line. The ball's hit on the wall is perfectly elastic (the ball does not shrink from the hit), the angle of incidence equals the angle of reflection. If the ball bounces off the wall not to the goal, that is, if it hits the other wall or the goal post, then the opposing team catches the ball and Robo-Wallace starts looking for miscalculation and gets dysfunctional. Such an outcome, if possible, should be avoided. We assume that the ball touches an object, if the distance from the center of the ball to the object is no greater than the ball radius r.

Input

The first and the single line contains integers y1, y2, ywxbybr (1 ≤ y1, y2, yw, xb, yb ≤ 106; y1 < y2 < ywyb + r < yw; 2·r < y2 - y1).

It is guaranteed that the ball is positioned correctly in the field, doesn't cross any wall, doesn't touch the wall that Robo-Wallace is aiming at. The goal posts can't be located in the field corners.

Output

If Robo-Wallace can't score a goal in the described manner, print "-1" (without the quotes). Otherwise, print a single number xw — the abscissa of his point of aiming.

If there are multiple points of aiming, print the abscissa of any of them. When checking the correctness of the answer, all comparisons are made with the permissible absolute error, equal to 10 - 8.

It is recommended to print as many characters after the decimal point as possible.

Examples

input

Copy


4 10 13 10 3 1


output

Copy


4.3750000000


input

Copy


1 4 6 2 2 1


output

Copy


-1


input

Copy


3 10 15 17 9 2


output

Copy


11.3333333333


Note

Note that in the first and third samples other correct values of abscissa xw are also possible.

 

分析:

CodeForces 248C. Robo-Footballer_#define_02

先求出X坐标,根据 两个角度的正切值成比例解出X值,然后利用这个X值,看这个红线的大三角与靠近y轴的小三角是相似的,利用T/(Y2-Y1-R)==X/(SQRT(X*X+U*U))解出T,U=yw-y1-2*r,判断T和R的关系即可。 

#include<bits/stdc++.h>
using namespace std;
#define ll long long
const int maxn=500000+66;
const ll mod=1e9+7;
int n,k;
int main()
{
double y1,y2,yw,xb,yb,r;
scanf("%lf %lf %lf %lf %lf %lf",&y1,&y2,&yw,&xb,&yb,&r);
double a=yw-y1-2*r;
double b=yw-yb-r;
double x=a*xb/(a+b);
double l=sqrt(x*x+a*a);
double ans=x*(y2-y1-r)/l;
if(r-ans>0)cout<<"-1"<<endl;
else printf("%.10lf",x);
}

 

举报

相关推荐

0 条评论