#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 .
Here is a simple graph showing the stone and the pulling force of Captain Chen.
In our problem, 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
Here, we have , you can see that the stone will spinning around the point , 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, will make the stone spinning counter-clockwise, while the gravity try to make the stone spinning clockwise. When the value of is too big, the stone will spinning around point .
The torque given to point A is , while the torque given to point A is
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 , which is the number of points on the stone.
Then come lines each with two numbers and , the position of the points.
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 , the id of the corner Captain Chen decides to pull the stone on.
Then comes a line with two numbers and , the direction Captain Chen will pull the stone.
It is guaranteed that this direction will point to the outside of the stone.
The last line comes with two numbers and , given the coefficient of kinetic friction
of the stone and the weight of the stone.
We always assume , and the gravity .
Output
The miminum force to move the stone, rounded to .
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