My colleague Elisabeth is lazy, both at work and when going to work. She never wants to do more than necessary, which also applies to her journey to work. Her goal is to use a minimum amount of energy, which she achieves by braking and accelerating as little as possible. This method applies to all wheel-based transport means she owns.
Elisabeth has earlier optimized her route by trial and error, but now wants your help to find the optimal path. She has provided a map with N junctions and R straight one-way roads between the junctions. If a road is dual way, it is represented as two one way roads.
Fortunately, Elisabeth often works night shifts, so braking and acceleration are only needed when turning in a junction, as there is no other traffic on the roads. Her goal is to find a route where the maximum turning angle in the junctions is minimized, as this means maximized speed. However, the route can not be too long.
J is the number of junctions, R is the number of one way which are connecting two junction, and D is the maximum distance,in meters. That Elisabeth wants to travel. The road network is such that there is no path, that Elisabeth may want to use , which has the length L such that D < L < D * ( 1 + 1e-6).
입력 5 6 500 -100 0 -100 100 0 200 100 100 100 0 1 2 1 3 2 3 3 4 3 5 4 5 출력 90.00000000 입력 5 6 450 -100 0 -100 100 0 200 100 100 100 0 1 2 1 3 2 3 3 4 3 5 4 5 출력 126.86989765 입력 5 12 440 -100 0 -100 100 0 200 100 100 100 0 1 2 1 3 3 1 2 3 3 2 3 4 4 3 3 5 5 3 4 5 5 4 5 1 출력 Impossible
출처:ncpc/2012/Problem E