Problem I
Scholar's Lawn
Famously at Cambridge, and often copied at other schools, is the tradition of the “Scholar’s Lawn” – an area of grass where Fellows of the school, or other distinguished entities, can walk, but regular students cannot.
So, if a student spies a Fellow walking across campus, and wishes to ambush …, er, meet up with them, the student is restricted to walking along a set of narrow paved walkways laid out in various places within the grassy areas, hoping to reach the Fellow’s path at the same time or before the Fellow arrives. At the end of the Fellow’s path is the Sacred Grove of Academe, off-limits to students, so if the Fellow reaches it before the student, the student is out of luck.
For instance, Figure 1 shows an area of lawn together with
the fixed set of paved walkways (solid lines) and the path
taken by a Fellow of the university (dotted line);
![\includegraphics[width=0.5\textwidth ]{lawn.png}](/problems/scholarslawn/file/statement/en/img-0001.png)
Input
Input begins with an integer
The Fellow always walks in a straight line. The student can walk only along walkways, which are assumed to have zero width. If a walkway intersects with another walkway or the Fellow’s path, it will do so at a single point. Collinear walkways never intersect one another; similarly, if the Fellow’s path and a walkway are collinear, they will not intersect.
Output
Output the earliest time
Sample Input 1 | Sample Output 1 |
---|---|
7 5 5 35 5 35 0 15 20 30 0 30 10 30 10 35 10 35 10 35 15 35 15 30 15 30 15 30 30 30.0 0.0 1.0 10 0 40 30 1.0 |
17.67766953 |
Sample Input 2 | Sample Output 2 |
---|---|
7 5 5 35 5 35 0 15 20 30 0 30 10 30 10 35 10 35 10 35 15 35 15 30 15 30 15 30 30 30.0 0.0 1.0 10 0 40 30 1.2 |
Impossible |