Pro.ID21908 TitleEllipse, again and again Title链接http://10.20.2.8/oj/exercise/problem?problem_id=21908 AC12 Submit25 Ratio48.00% 时间&空间限制描述There is an ellipse in the plane, its formula is . We denote the focuses by F1 and F2. There is a point P in the plane. Draw a segment to associate the origin and P, which intersect the ellipse at point Q. Then draw a tangent of the ellipse which passes Q. Denote the distance from the center of the ellipse to the tangent by d. Calculate the value of . 输入The first line contains a positive integer n that indicates number of test cases. And each test case contains a line with four integers. The value of parameters of the ellipse a, b ( 0 < |a|, |b| ≤ 100 ), and the coordinates x, y of P ( |x| ≤ 100, |y| ≤ 100 ) are given successively. 输出Description There is an ellipse in the plane, its formula is . We denote the focuses by F1 and F2. There is a point P in the plane. Draw a segment to associate the origin and P, which intersect the ellipse at point Q. Then draw a tangent of the ellipse which passes Q. Denote the distance from the center of the ellipse to the tangent by d. Calculate the value of . Input The first line contains a positive integer n that indicates number of test cases. And each test case contains a line with four integers. The value of parameters of the ellipse a, b ( 0 < |a|, |b| ≤ 100 ), and the coordinates x, y of P ( |x| ≤ 100, |y| ≤ 100 ) are given successively. Output For each test case, output one line. If the given point P lies inside the given ellipse, print "In ellipse" otherwise print the value of d*d*QF1*QF2 rounded to the nearest integer. Sample Input 1 Sample Output 1 Source 样例输入1 样例输出1 作者 |