eolymp
bolt
Try our new interface for solving problems
Problems

Lonely Mountain

Lonely Mountain

"This was made by Thror, your grandfather, Thorin",

he said in answer to the dwarves’ excited questions.

"It is a plan of the Mountain."

J. R. R. Tolkien. The Hobbit, or There and Back Again

The plan of the Lonely Mountain consists of two parallel projections of the mountain to two projection planes. Both planes are perpendicular to the ground and each other. Each projection has a mountain-like shape.

prb6271-01

Since Bilbo Baggins has never seen the mountain, he tries to imagine it. Is it really the Lonely Mountain or some ridges and other mountains surround it? In any case, it must be tremendous to hold the whole dwarves’ kingdom!

Bilbo decided to estimate the maximum possible volume of the Lonely Mountain and nearby mountains (if any) based on the plan provided by Gandalf.

Input

The first line contains single integer number nx — the number of points in the parallel projection of the mountain to the plane Oxz (2nx100000). The second line contains nx pairs of integer numbers xi, zi — the coordinates of the polygonal chain, representing the projection (-109x1 < x2 < x3 < ... < xnx109, 0zi109, z1 = znx = 0).

The following two lines contain projection to the Oyz plane in the same format.

Output

The only line must contain a single number V — the maximum possible volume of the Lonely Mountain.

The absolute or relative precision of you answer should be at least 10-6. E.g. if V is the actual maximum possible volume, the following must hold: prb6271-02.

If there are no mountains corresponding to the given projections, output a single line "**Invalid plan**".

Time limit 2 seconds
Memory limit 256 MiB
Input example #1
6
0 0 1 1 2 0 3 3 4 4 6 0
5
0 0 1 1 2 1 3 4 4 0
Output example #1
21.824074074074073
Input example #2
3
-1 0 0 1 2 0
4
0 0 1 1 2 2 3 0
Output example #2
Invalid plan
Source ACM ICPC 2013–2014, NEERC, Northern Subregional Contest, St Petersburg, October 26, 2013