ICPC 2012 · Problem J · Shortest Flight Path
Statement
Problem ID: shortest
Commercial flights are statistically quite safe (in terms of number of deaths per passenger-kilometer, only going to the moon is safer). But there are still reasons for precautions and safety regulations. An early such rule was the so-called “60-minute rule,” which required that a two-engine plane must always be within 60 minutes of the nearest adequate airport along its entire flight path. A variety of similar rules have existed, but at their core, they remain the same: the flight path can not take the airplane more than a certain maximum allowed distance from the nearest airport. With these restrictions, planes cannot always use a direct route for flying from one airport to another.
In this problem we will compute the shortest flight path between two airports while adhering to a max- imum allowed distance rule. In the figure below, which illustrates the first sample test case, any flight route has to stay within the three circles. Thus a plane going from airport 2 to airport 3 has to detour from the direct route via the region around airport 1. Note that the plane would not necessarily have to go to airport 1 itself.
Things are further complicated by the fact that planes have limited fuel supply, and to go longer distances they may need to make a stopover at intermediate airports. Thus, depending on the fuel capacity, a plane going from airport 2 to airport 3 in the figure might have to stop over at airport 1 (or the fuel capacity might be too low even to go to airport 1, in which case the trip would be impossible to make).
ACM-ICPC World Finals 2012 Problem J: Shortest Flight Path We make the following simplifying assumptions:
- The surface of the earth is a sphere of radius 6370 km. 2. Both time and fuel consumption are directly proportional to distance traveled. In other words we are interested only in total distance traveled. 3. The difference in distance caused by planes flying at different altitudes is negligible. Thus, effec- tively, we assume them to be flying along the earth’s surface. 4. A plane may stop for refueling at as many intermediate airports as needed, each time getting a full tank.
Input
The first line of each test case contains two integers and , where is the number of airports and is the maximum allowed flight distance (in km) from the nearest airport. Each of the next lines contains two integers , satisfying and , the longitude and latitude (respectively) of an airport, in degrees. The airports are numbered according to their order in the input starting from one. No two airports are at the same position.
Following this is a line containing an integer , satisfying . Each of the next lines contains three integers , , satisfying , , and , indicating a plane going from airport to airport with a fuel capacity yielding a range of km.
Output
For each test case, display the case number followed by one line for each query containing the length in km of the shortest flight path between airport and , subject to the fuel constraint . Display the length accurate to three decimal places. If there is no permissible path between the two airports, then display the word impossible instead.
You may assume the answer is numerically stable for perturbations of up to km of or .
Sample Input
3 2000
0 0
0 30
30 0
3
2 3 5000
2 3 4000
2 3 3000
2 10000
45 45
225 -45
2
1 2 50000
2 1 50000
Sample Output
Case 1:
4724.686
6670.648
impossible
Case 2:
impossible
impossible
ACM-ICPC World Finals 2012 Problem J: Shortest Flight Path
No official solution in the source collection.