2372. Escape

单点时限: 10.0 sec

内存限制: 256 MB

A group of war prisoners are trying to escape from a prison. They have thoroughly planned the escape from the prison itself, and after that they hope to find shelter in a nearby village. However,the village (marked as B, see picture below) and the prison (marked as A) are separated by a canyon which is also guarded by soldiers. These soldiers sit in their pickets and rarely walk; the range of view of each soldier is limited to exactly 100 meters. Thus, depending on the locations of soldiers, it may be possible to pass the canyon safely, keeping the distance to the closest soldier strictly larger than 100 meters at any moment.

You are to write a program which, given the width and the length of the canyon and the coordinates of every soldier in the canyon, and assuming that soldiers do not change their locations, first determines whether prisoners can pass the canyon unnoticed. If this is impossible then the prisoners (having seen enough violence) would like to know the minimum number of soldiers that have to be eliminated in order to pass the canyon safely. A soldier may be eliminated regardless of whether he is visible to any other soldier or not.

输入格式

The first line contains three integers L, W, and N – the length and the width of the canyon, and the number of soldiers, respectively. Each of the following N lines contains a pair of integers Xi and Yi – the coordinates of i-th soldier in the canyon (0 ≤ Xi ≤ L, 0 ≤ Yi ≤ W). The coordinates are given in meters, relative to the canyon: the southwestern corner of the canyon has coordinates (0, 0), and the northeastern corner of the canyon has coordinates (L,W), as seen in the picture above.

Note that passing the canyon may start at coordinate (0, ys) for any 0 ≤ ys ≤ W and end at coordinate (L, ye) for any 0 ≤ ye ≤ W. Neither ys nor ye need to be integer.

输出格式

In the first and only line of the output file the program should print the minimum number of soldiers that have to be eliminated in order for the prisoners to pass the canyon safely. If the prisoners can escape without any elimination, the program should print 0 (zero).

样例

Input
130 340 5
10 50
130 130
70 170
0 180
60 260
Output
1
Constraints
1 ≤ W ≤ 50,000 1 ≤ L ≤ 50,000 1 ≤ N ≤ 250

5 人解决,8 人已尝试。

8 份提交通过,共有 32 份提交。

7.6 EMB 奖励。

创建: 15 年,6 月前.

修改: 6 年,8 月前.

最后提交: 3 年,6 月前.

来源: BOI 2007

题目标签