Time Limit: 1000MS | | Memory Limit: 10000K |
Total Submissions: 6668 | | Accepted: 2725 |
Description
The art galleries of the new and very futuristic building of the Center for Balkan Cooperation have the form of polygons (not necessarily convex). When a big exhibition is organized, watching over all of the pictures is a big security concern. Your task is that for a given gallery to write a program which finds the surface of the area of the floor, from which each point on the walls of the gallery is visible. On the figure 1. a map of a gallery is given in some co-ordinate system. The area wanted is shaded on the figure 2.
Input
The number of tasks T that your program have to solve will be on the first row of the input file. Input data for each task start with an integer N, 5 <= N <= 1500. Each of the next N rows of the input will contain the co-ordinates of a vertex of the polygon ? two integers that fit in 16-bit integer type, separated by a single space. Following the row with the co-ordinates of the last vertex for the task comes the line with the number of vertices for the next test and so on.
Output
For each test you must write on one line the required surface - a number with exactly two digits after the decimal point (the number should be rounded to the second digit after the decimal point).
Sample Input
170 04 44 79 713 -18 -64 -4
Sample Output
80.00
/*poj 1279 半平面交核面积给你一个多边形的图书馆.要求得到一块地方能看见墙上所有的点,并求出面积在半平面模板上加个求面积公式即可.而且输入并没有指定顺时针还是逆时针,可以通过求面积进行判断.hhh-2016-05-11 21:01:47*/#include #include #include #include #include #include #include #include #include #include