JOJ1076 && POJ1039 Pipe 经典计算几何

来源:互联网 发布:淘宝大学app ipad 编辑:程序博客网 时间:2024/06/05 19:05

 

 1076: Pipe


ResultTIME LimitMEMORY LimitRun TimesAC TimesJUDGE3s8192K7522Standard

The GX Light Pipeline Company started to prepare bent pipes for the new transgalactic light pipeline. During the design phase of the new pipe shape the company ran into the problem of determining how far the light can reach inside each component of the pipe. Note that the material which the pipe is made from is not transparent and not light reflecting.

Each pipe component consists of many straight pipes connected tightly together. For the programming purposes, the company developed the description of each component as a sequence of points [x1; y1], [x2; y2], . . ., [xnyn], where x1 < x2 < . . . xn . These are the upper points of the pipe contour. The bottom points of the pipe contour consist of points withy-coordinate decreased by 1. To each upper point [xiyi] there is a corresponding bottom point [xi; (yi)-1] (see picture above). The company wants to find, for each pipe component, the point with maximal x-coordinate that the light will reach. The light is emitted by a segment source with endpoints [x1; (y1)-1] and [x1; y1] (endpoints are emitting light too). Assume that the light is not bent at the pipe bent points and the bent points do not stop the light beam.

Input

The input file contains several blocks each describing one pipe component. Each block starts with the number of bent points 2 <= n <= 20 on separate line. Each of the next n lines contains a pair of real values xiyi separated by space. The last block is denoted with n = 0.

Output

The output file contains lines corresponding to blocks in input file. To each block in the input file there is one line in the output file. Each such line contains either a real value, written with precision of two decimal places, or the message Through all the pipe.. The real value is the desired maximal x-coordinate of the point where the light can reach from the source for corresponding pipe component. If this value equals to xn, then the message Through all the pipe. will appear in the output file.

Sample Input

40 12 24 16 460 12 -0.65 -4.457 -5.5712 -10.817 -16.550

Sample Output

4.67Through all the pipe.

      这是一道经典的求直线与线段相交的计算几何,在Lrj的黑书上有比较详细的描述。不过黑书里面的思想可取,做法效率不高。
      首先,引用一段黑书上的分析:看到此题,我们应该能想到,如果一根光线自始自终未曾擦到任何的顶点,则这种情况下肯定不是最优的,
可以通过平移使之优化。其次,如果只碰到一个顶点,那也不是最优的,可以通过旋转,使它碰到另一个顶点,并且更优。
      由此得知,一个最优的光线一定经过一个管道的上顶点和下顶点。
     而按照黑书上的方法,是枚举管道中的一个上顶点和下顶点,然后求过这两点的直线所能交到的最远x。
     不过我们可以想到另外一个比较好的方法,我们可以这样考虑,如果一条直线能穿过管道,根据上面的分析,
     则可知这条直线一定经过第n个位置的上顶点或者下顶点,否则,一定与某个线段 AB, A(xi,yi),B(xi+1,yi+1)相交一点,
     或者与平行AB的线段CD相交一点。
     此时,我们不妨枚举光线经过的一个点,然后通过斜率确定一条经过某一个另一位置点的直线,然后通过斜率来判断是否可行。
     下面贴出在代码
     

 

原创粉丝点击