#Lutece0801. I Must Take the Stones Home!

I Must Take the Stones Home!

Migrated from Lutece 801 I Must Take the Stones Home!

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

After finding the beautiful stone, our Captain Chen feels excited. He decides to take the stone home. Hear we regard the stone as a convex polygon.

Captain Chen will choose a corner of the stone, and choose a direction to pull the stone.

The stone has weight, and it will have friction with the ground. Here we assume the maximum coefficient of static friction equals the coefficient of kinetic friction, therefore you can simply assume Ff=μFNF_{f} = \mu F_{N}.

Here is a simple graph showing the stone and the pulling force of Captain Chen.

title

In our problem, FyF_{y} will always points up.

However, there might be other problems! The stone might spinning around some point on the ground, and begin to rolling. We have to consider this problem.

Here is an example of spinning

title

Here, we have F=1.5N,G=6NF = 1.5N, G = 6N, you can see that the stone will spinning around the point AA, if you do not understand why, you have to understand the idea of torque.

Torque, moment or moment of force (see the terminology below), is the tendency of a force to rotate an object about an axis, fulcrum, or pivot. Just as a force is a push or a pull, a torque can be thought of as a twist to an object. Mathematically, torque is defined as the cross product of the lever-arm distance vector and the force vector, which tends to produce rotation.

In the picture above, FF will make the stone spinning counter-clockwise, while the gravity try to make the stone spinning clockwise. When the value of FF is too big, the stone will spinning around point AA.

The torque FF given to point A is 1.5N×4m1.5N\times 4m, while the torque GG given to point A is 6N×1m6N\times1m

So, if Captain wants to take the stone home, he has to consider both force balance and torque balance.

Tell us the minimum force Captain Chen has to take, given the corner Captain Chen chooses and the direction Captain Chen will try to pull the stones to.

Input

The first line of input contains a single number nn, which is the number of points on the stone. (3n50)(3\leq n\leq 50)

Then come nn lines each with two numbers xix_{i} and yiy_{i}, the position of the points. (1000xi,yi1000,y0=y1=0)(-1000\leq x_{i}, y_{i}\leq 1000, y_{0} = y_{1}=0)

We consider that the first point and the second point will always be on the ground, and the points are given in counter-clockwise direction.

Then comes a line with a number idid, the id of the corner Captain Chen decides to pull the stone on. (2idn1)(2\leq id\leq n - 1)

Then comes a line with two numbers dxdx and dydy, the direction Captain Chen will pull the stone. 1000dx1000,0dy1000-1000\leq dx\leq 1000, 0\leq dy\leq 1000

It is guaranteed that this direction will point to the outside of the stone.

The last line comes with two numbers μ\mu and mm, given the coefficient of kinetic friction of the stone and the weight of the stone.

We always assume g=9.8N/kgg = 9.8N/kg, and the gravity G=mgG = mg.

Output

The miminum force to move the stone, rounded to 0.0010.001.

Samples

11
181.00 0.00
506.14 0.00
557.10 0.22
665.30 74.71
789.08 200.92
665.47 455.89
179.19 363.04
-56.56 307.79
-196.92 170.66
-214.00 84.04
-143.54 53.85
10
-328.13 23.53
0.85 98.77
777.477

Note

You can use printf("%.3f\n") to output the result.

Resources

the 12th UESTC Programming Contest Preliminary