#P10624. [ICPC 2013 WF] Pollution Solution
[ICPC 2013 WF] Pollution Solution
题目描述
As an employee of Aqueous Contaminate Management, you must monitor the pollution that gets dumped (sometimes accidentally, sometimes purposefully) into rivers, lakes and oceans. One of your jobs is to measure the impact of the pollution on various ecosystems in the water such as coral reefs, spawning grounds, and so on.

The model you use in your analysis is illustrated in Figure J.1. The shoreline (the horizontal line in the figure) lies on the -axis with the source of the pollution located at the origin . The spread of the pollution into the water is represented by the semicircle, and the polygon represents the ecosystem of concern. You must determine the area of the ecosystem that is contaminated, represented by the dark blue region in the figure.
输入格式
The input consists of a single test case. A test case starts with a line containing two integers n and , where is the number of vertices in the polygon and is the radius of the pollution field. This is followed by lines, each containing two integers , giving the coordinates of the polygon vertices in counter-clockwise order, where and . The polygon does not self-intersect or touch itself. No vertex lies on the circle boundary.
输出格式
Display the area of the polygon that falls within the semicircle centered at the origin with radius . Give the result with an absolute error of at most .
6 10
-8 2
8 2
8 14
0 14
0 6
-8 14
101.576437872
