A long straight road connects two villages. Along the road,
The first messenger (the closest to the first village) has a radio-receiver which he uses to keep track of current ongoings in the country. When he finds out who has been evicted from whichever reality show is currently popular, he starts running as fast as he can to share the unfortunate (or fortunate) news with everyone else. While running, he shouts the name of the evicted person so that any fellow messengers that are close enough can hear him. Meanwhile, the remaining messengers do not merely sit and wait, but also run themselves, all with the selfless goal of sharing the news with everyone as fast as possible.
The running and shouting proceeds as follows:
- Each of the messengers may run whenever, in either direction, at a speed of at most
unit per second, or may decide not to run at all and stand still. - All messengers that know the news shout it at all times. One messenger can hear another
messenger shouting (and learn the news) if the distance between them is at most
units.
Write a program that, given the initial locations of the messengers, determines the least amount of time (in seconds) needed for all messengers to learn the news. The location of every messenger is given with a positive real number – the distance from the first village. As mentioned above, initially only the first messenger knows the news.
Input Specification
The first line contains the real number
The second line contains the integer
Each of the following
Output Specification
Output a real number, the least time for all messengers to learn the news. Your output will be accepted
if it differs from the official output by no more than
Sample Input 1
3.000
2
0.000
6.000
Sample Output 1
1.500
Sample Input 2
2.000
4
0.000
4.000
4.000
8.000
Sample Output 2
1.000
Comments