ICPC 2012 · Problem J · Shortest Flight Path

36th ICPC · Warsaw, Poland

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:

  1. 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 NN and RR, where 2N252 \le N \le 25 is the number of airports and 1R100001 \le R \le 10 000 is the maximum allowed flight distance (in km) from the nearest airport. Each of the next NN lines contains two integers φ\varphi, θ\theta satisfying 0φ<3600 \le \varphi < 360 and 90θ90- 90 \le \theta \le 90, 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 QQ, satisfying 1Q1001 \le Q \le 100. Each of the next QQ lines contains three integers ss, tt, cc satisfying 1s,tN1 \le s, t \le N, s=ts = t, and 1c500001 \le c \le 50 000, indicating a plane going from airport ss to airport tt with a fuel capacity yielding a range of cc 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 ss and tt, subject to the fuel constraint cc. 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 0.10.1 km of RR or cc.

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.