#P13453. [GCJ 2009 Finals] Lights
[GCJ 2009 Finals] Lights
题目描述
In a big, square room there are two point light sources: one is red and the other is green. There are also circular pillars.
Light travels in straight lines and is absorbed by walls and pillars. The pillars therefore cast shadows: they do not let light through. There are places in the room where no light reaches (black), where only one of the two light sources reaches (red or green), and places where both lights reach (yellow). Compute the total area of each of the four colors in the room. Do not include the area of the pillars.
输入格式
- One line containing the number of test cases, .
Each test case contains, in order:
- One line containing the coordinates , of the red light source.
- One line containing the coordinates , of the green light source.
- One line containing the number of pillars .
- lines describing the pillars. Each contains 3 numbers , , . The pillar is a disk with the center and radius .
The room is the square described by . Pillars, room walls and light sources are all disjoint, they do not overlap or touch.
输出格式
For each test case, output:
Case #X:
black area
red area
green area
yellow area
where is the test case number, starting from 1, and each area is a real number.
Any answer with absolute or relative error of at most will be accepted.
1
5 50
95 50
1
50 50 10
Case #1:
0.7656121
1437.986
1437.986
6809.104
提示
Limits
- All input numbers are integers.
Small dataset(21 Pts)
- Time limit:
205 seconds.
Large dataset(45 Pts)
- Time limit:
9030 seconds.