#Lutece0465. Model Rocket Height

Model Rocket Height

Migrated from Lutece 465 Model Rocket Height

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

Just when you thought we had run out of model rocket height problems…

Yet another method used to determine the height achieved by a model rocket is the vertical line method. Two observers AA and BB are spaced DD feet apart along a base line along one edge of the flat test field. The launch latform is equidistant from observers AA and BB and LL feet from the base line.

Each observer has a theodolite or some other device for measuring angle above the horizontal (elevation angle) of a distant object and the azimuth angle (the angle the vertical plane of the sight line makes with the line from AA through BB measured counter-clockwise). Each measuring device is on a stand. AA’s device is HAHA feet above the level of the launch platform and BB’s device is HBHB feet above the level of the launch platform.

When a rocket is fired, near the top of its flight, it deploys a parachute and emits a puff of smoke. Each observer measures the elevation angle and azimuth angle of the puff of smoke from their location. If the peak location is on the wrong side of the baseline or outside the lines determined by AA and BB perpendicular to the base line, it is out of bounds and disqualified. From this information, the height of the rocket may be determined as follows:

Each sight line determines a vertical plane. These two planes intersect in a vertical line (thus the name of the method). Each sight line intersects this vertical line in a point. If these points are more than ERRDISTERRDIST feet apart, an error is assumed and the flight is rejected. Otherwise, the point halfway between the two points where a sight line intersects the vertical line is computed. The rocket height is the distance of this midpoint above the launch platform.

You must write a program which, given the parameters DD (the distance in feet between observers AA and BB), LL (the distance in feet from the base line to the launch platform), HAHA (the distance of the measuring device AA above the launch platform in feet), HBHB (the distance of the measuring device BB above the launch platform in feet), ERRDISTERRDIST (the maximum distance between the intersection points of a sight line with the vertical line), α\alpha (the elevation angle of the rocket in degrees measured by the left observer AA), β\beta (the elevation angle of the rocket in degrees observed by the right observer BB), γ\gamma (the azimuth angle in degrees measured by the left observer AA) and δ\delta (the azimuth angle in degrees measured by the right observer BB), computes the height of the rocket above the launch platform in feet to the nearest foot.

Input

The first line of input contains a single integer NN, (1N10001\leq N\leq 1000) which is the number of datasets that follow.

The second line contains the parameters DD, LL, HAHA, HBHB and ERRDISTERRDIST in that order as (floating point) decimal values. These values would be measured once at the beginning of the day and remain fixed through all rocket shots.

Each succeeding line of input represents a single dataset. Each dataset will contain the angles α\alpha, β\beta, γ\gamma and δ\delta in that order (measured in degrees) as (floating point) decimal values for a rocket shot.

Output

For each dataset of four angles, the output consists of a single line . If angles α\alpha, β\beta and γ\gamma are not strictly between 00 and 9090 degrees or δ\delta is not strictly between 9090 degrees and 180180 degrees, the line should contain the dataset number, a space and the word DISQUALIFIED (without the quotes).

Otherwise, if the distance between the intersection points of a sight line with the vertical line is more that ERRDISTERRDIST feet, the line should contain the dataset number, a space and the word ERROR (without the quotes). Otherwise, the line should contain the dataset number, a space and the height above the launch platform in feet to the nearest foot.

Samples

4
100.0 300.0 5.25 2.92 5.00
40.1 36.2 35.3 151.6
64.9 71.1 15.7 160.1
44.9 41.2 33.1 152.5
44.9 41.2 33.1 52.5
1 50
2 ERROR
3 58
4 DISQUALIFIED

Resources

Greater New York 2007