301153: CF215B. Olympic Medal

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Olympic Medal

题意翻译

一种奖牌由内圆和外环组成, 外环的半径为r1,密度为p1,内圆的半径为r2,密度为p2; 给出一种外环和内圆的质量比(A/B)! 给出一系列的r1,p1,p2! 分别从中选出r1,p1,p2;要求最大的r2是多少!

题目描述

The World Programming Olympics Medal is a metal disk, consisting of two parts: the first part is a ring with outer radius of $ r_{1} $ cm, inner radius of $ r_{2} $ cm, $ (0<r2<r1) $ made of metal with density $ p_{1} $ g/cm $ ^{3} $ . The second part is an inner disk with radius $ r_{2} $ cm, it is made of metal with density $ p_{2} $ g/cm $ ^{3} $ . The disk is nested inside the ring. The Olympic jury decided that $ r_{1} $ will take one of possible values of $ x_{1},x_{2},...,x_{n} $ . It is up to jury to decide which particular value $ r_{1} $ will take. Similarly, the Olympic jury decided that $ p_{1} $ will take one of possible value of $ y_{1},y_{2},...,y_{m} $ , and $ p_{2} $ will take a value from list $ z_{1},z_{2},...,z_{k} $ . According to most ancient traditions the ratio between the outer ring mass $ m_{out} $ and the inner disk mass $ m_{in} $ must equal ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF215B/cd92991466e894ef37b65a9188f245d17d24ea1f.png), where $ A,B $ are constants taken from ancient books. Now, to start making medals, the jury needs to take values for $ r_{1} $ , $ p_{1} $ , $ p_{2} $ and calculate the suitable value of $ r_{2} $ . The jury wants to choose the value that would maximize radius $ r_{2} $ . Help the jury find the sought value of $ r_{2} $ . Value $ r_{2} $ doesn't have to be an integer. Medal has a uniform thickness throughout the area, the thickness of the inner disk is the same as the thickness of the outer ring.

输入输出格式

输入格式


The first input line contains an integer $ n $ and a sequence of integers $ x_{1},x_{2},...,x_{n} $ . The second input line contains an integer $ m $ and a sequence of integers $ y_{1},y_{2},...,y_{m} $ . The third input line contains an integer $ k $ and a sequence of integers $ z_{1},z_{2},...,z_{k} $ . The last line contains two integers $ A $ and $ B $ . All numbers given in the input are positive and do not exceed 5000. Each of the three sequences contains distinct numbers. The numbers in the lines are separated by spaces.

输出格式


Print a single real number — the sought value $ r_{2} $ with absolute or relative error of at most $ 10^{-6} $ . It is guaranteed that the solution that meets the problem requirements exists.

输入输出样例

输入样例 #1

3 1 2 3
1 2
3 3 2 1
1 2

输出样例 #1

2.683281573000

输入样例 #2

4 2 3 6 4
2 1 2
3 10 6 8
2 1

输出样例 #2

2.267786838055

说明

In the first sample the jury should choose the following values: $ r_{1}=3 $ , $ p_{1}=2 $ , $ p_{2}=1 $ .

Input

题意翻译

一种奖牌由内圆和外环组成, 外环的半径为r1,密度为p1,内圆的半径为r2,密度为p2; 给出一种外环和内圆的质量比(A/B)! 给出一系列的r1,p1,p2! 分别从中选出r1,p1,p2;要求最大的r2是多少!

加入题单

算法标签: