#2536. [NEERC2008] Clock

[NEERC2008] Clock

Description

One famous Russian architect plans to build a new monumental construction. It will be a huge clock that indicates the time from the beginning of the universe.

The face of this clock contains hands, moving at constant speeds. They are numbered from 11 to nn from the fastest to the slowest one. The fastest hand makes one revolution per minute (6060 seconds). Each next hand moves slower than previous, the (i+1)(i + 1)-th hand makes one revolution when the ii-th hand makes did_i revolutions.

The setting mechanism of this clock is very simple. You can take a hand by the handle, located on its end, and move it in any direction. When you move the hand, slower hands are moving in proportion to their usual speeds, and faster hands are not moving. Remember that hands are huge, so setting this clock is a hard job.

Consider an example with three hands: a second hand, a minute hand, and an hour hand. Their lengths are 5, 155,\ 15 and 1010 meters respectively. You want to set the clock from 2:302:30 to 6:006:00. The easiest way to do it is to rotate the minute hand 180180^\circ clockwise, and then move the hour hand 9090^\circ clockwise.

The total distance you moved the handles of the hands is approximately 62.8362.83 meters.

Your task is to write a program that finds the way to set the clock that minimizes the total distance you have to move the handles.

Input

The first line of the input file contains one integer nn - the number of hands (0<n500 < n \leq 50). The second line contains n1n − 1 integer numbers d1, d2, , dn1d_1,\ d_2,\ \cdots,\ d_{n−1} (2di1062 \leq d_i \leq 10^6). The third line contains nn integer numbers l1, l2, , lnl_1,\ l_2,\ \cdots,\ l_n (1li1061 \leq l_i \leq 10^6) - lengths of clock hands. Next two lines contain two non-negative integer numbers (one number per line): time indicated by the clock and the actual time that should be set. Both times are measured in seconds from the beginning of the universe and are less than 263263.

Output

Print the minimal possible total distance you have to move the handles. The answer must be precise toat least 44 digits after decimal point.

3
60 12
5 15 10
52200
453600
62.831853072