#P6902. [ICPC 2014 WF] Surveillance
[ICPC 2014 WF] Surveillance
题目描述
The International Corporation for Protection and Control (ICPC) develops efficient technology for, well, protection and control. Naturally, they are keen to have their own headquarters protected and controlled. Viewed from above, the headquarters building has the shape of a convex polygon. There are several suitable places around it where cameras can be installed to monitor the building. Each camera covers a certain range of the polygon sides (building walls), depending on its position. ICPC wants to minimize the number of cameras needed to cover the whole building.
输入格式
The input consists of a single test case. Its first line contains two integers and ( and ), where is the number of walls and is the number of possible places for installing cameras. Each of the remaining lines contains two integers and (). These integers specify which walls a camera at the place would cover. If then the camera covers each wall such that . If then the camera covers each wall such that or .
输出格式
Display the minimal number of cameras that suffice to cover each wall of the building. The ranges covered by two cameras may overlap. If the building cannot be covered, display impossible instead.
100 7
1 50
50 70
70 90
90 40
20 60
60 80
80 20
3
8 2
8 3
5 7
impossible
8 2
8 4
5 7
2
提示
Time limit: 4000 ms, Memory limit: 1048576 kB.
International Collegiate Programming Contest (ACM-ICPC) World Finals 2014