시간 제한메모리 제한제출정답맞힌 사람정답 비율
3 초 128 MB157450.000%

문제

A recent downturn in the contract killing market has led to a lot of ninjas being laid off, sitting at home, eating hamburgers and watching game shows. As such they have become overweight, and addicted to junk food and game shows. Naturally many of those unemployed Ninjas are interested in a game show that promises a life-time supply of hamburgers for anyone who is able to use ninja-like stealth to cross a square hall without triggering any of strategically installed laser sensors. 

The square hall is laid out as a grid of 10 metres by 10 metres squares. The lasers are attached to the ceiling and shoot their beams straight down to a sensor on the ground. The number of laser sensors per square is between 3 and 7, inclusive. Each of the laser beams has zero width and will set off an alarm if a contestant touches its sensor. Each contestant must enter the hall from its left side, move their entire girth across the hall and completely through the right side without crossing the top or bottom walls. It is not sufficient just to touch the right side.

The game show host would like the sensors to be arranged so that very fat ninjas will find it difficult to succeed. Your task is to write a program to compute the girth of the fattest ninja that could succeed in crossing the hall for each proposal of sensors' arrangement. Your program should assume that the ninjas are perfect circles when viewed from above, and that the ninjas are too overweight to jump off the floor.

입력

The input consists of a number of game instances. The description of each game begins with two integers N and L, separated by a a single space, on a line by themselves. N represents the number of the square hall's side in metres and L represents the number of installed lasers. 1 ≤ N,L ≤ 1000. Each of the following L lines contains two integers x and y, separated by a single space, which represent the coordinates of a laser sensor on the floor. 0 ≤ x,y ≤ N.

Two zeros on a line by themselves indicate the end of input and should not be processed.

출력

For each game, the output consists of a floating point number, on a can move through the hall without touching any of the laser sensors. The diameter is to be rounded to three decimal places, padding if necessary.

Reminder: Rounding a positive number R.xxxy to three decimal places

If the fourth decimal place is less than 5, then the rounded value is  “R.xxx” . Otherwise, the rounded value is R.xxx + 0.001 .

Examples are: for the value of 10.3463 the output should be 10.346, and for the value of 10.3695 the output is 10.370

예제 입력 1

5 3
1 1
4 4
1 4
11 7
1 1
2 3
3 5
4 7
6 5
7 7
8 9
0 0

예제 출력 1

3.000
2.828

출처

ICPC > Regionals > South Pacific > South Pacific Region > 2012 ACM South Pacific Programming Contest H번

  • 잘못된 조건을 찾은 사람: doju
  • 문제의 오타를 찾은 사람: kcm1700