当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

3798:Cave Crisis

题目描述
R2D2 was exploring a tunnel when a cave-in suddenly occurred. Oh no, is he trapped?



From an overhead view, we can see all the obstacles (debris) on a two-dimensional Cartesian plane. The tunnel is w cm wide, bounded by the lines y = w/2 and y = -w/2. R2D2 starts at (0, 0), and has a perfectly circular footprint of radius r. The exit of the tunnel lies to the right of the line x = 1000. Between R2D2 and the exit lie a number of polygonal obstacles.

Is it possible for R2D2 to navigate between the obstacles and make it to the exit?
输入解释
The input file will contain multiple test cases. Each test case begins with a single line containing an even integer w (2 ≤ w ≤ 1000), the width of the tunnel, and an integer N (0 ≤ N ≤ 100), the number of obstacles. The next N lines each contain the description of a single obstacle. The ith obstacle is a simple polygon, specified on a single line containing an integer ni (3 ≤ ni ≤ 10), the number of vertices, followed by ni pairs of integers, xij and yij (0 ≤ xij ≤ 1000 and -w/2 ≤ yij ≤ w/2 for j = 1, ..., ni ), specifying the coordinates of the vertices in counterclockwise order. Note that obstacles in the input may touch or even overlap. However, you are guaranteed that R2D2’s initial location will not touch or overlap any obstacle. The vertices of each polygon are unique, no two nonconsecutive edges of the polygon intersect (even at their endpoints), and each polygon is guaranteed to have nonzero area. The end-of-input is denoted by an invalid test case with w = N = 0 and should not be processed.
输出解释
For each input test case, you must determine the maximum radius r > 0 that R2D2 could have and still be able to plan a path from his starting location (0, 0) to the tunnel exit without overlapping with any of the obstacles. You should print either this maximum radius r (rounded to two decimal places) or the message “impossible” if no such radius exists.
输入样例
6 2 
4 2 -1 4 -1 4 1 2 1 
3 3 0 6 -1 6 1 
8 2 
3 1 -1 4 -1 4 4 
3 3 -4 6 1 3 1 
10 7 
4 0 5 4 2 5 3 4 5 
3 4 -5 9 -5 9 0 
4 8 -5 11 -5 11 -2 8 -2 
3 8 3 16 1 11 5 
4 21 -5 23 -3 20 -2 15 -4 
3 22 3 26 -1 28 0 
3 24 0 29 4 25 3 
0 0
输出样例
1.00
impossible
1.33

该题目是Virtual Judge题目,来自 北京大学POJ

题目来源 Pacific Northwest 2008

源链接: POJ-3798

最后修改于 2020-10-29T07:11:47+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
1000 65536