#P6907. [ICPC 2015 WF] Cutting Cheese
[ICPC 2015 WF] Cutting Cheese
题目描述
Of course you have all heard of the International Cheese Processing Company. Their machine for cutting a piece of cheese into slices of exactly the same thickness is a classic. Recently they produced a machine able to cut a spherical cheese (such as Edam) into slices – no, not all of the same thickness, but all of the same weight! But new challenges lie ahead: cutting Swiss cheese.
Swiss cheese such as Emmentaler has holes in it, and the holes may have different sizes. A slice with holes contains less cheese and has a lower weight than a slice without holes. So here is the challenge: cut a cheese with holes in it into slices of equal weight.
By smart sonar techniques (the same techniques used to scan unborn babies and oil fields), it is possible to locate the holes in the cheese up to micrometer precision. For the present problem you may assume that the holes are perfect spheres.
Each uncut block has size where each dimension is measured in millimeters. Your task is to cut it into slices of equal weight. The slices will be mm wide and mm high, and your job is to determine the thickness of each slice.
输入格式
The first line of the input contains two integers and , where is the number of holes in the cheese, and is the number of slices to cut. The next lines each contain four positive integers , , , and that describe a hole, where is the radius and , , and are the coordinates of the center, all in micrometers.
The cheese block occupies the points where , except for the points that are part of some hole. The cuts are made perpendicular to the axis.
You may assume that holes do not overlap but may touch, and that the holes are fully contained in the cheese but may touch its boundary.
输出格式
Display the slice thicknesses in millimeters, starting from the end of the cheese with . Your output should have an absolute or relative error of at most .
0 4
25.000000000
25.000000000
25.000000000
25.000000000
2 5
10000 10000 20000 20000
40000 40000 50000 60000
14.611103142
16.269801734
24.092457788
27.002992272
18.023645064
提示
Time limit: 3000 ms, Memory limit: 1048576 kB.
International Collegiate Programming Contest (ACM-ICPC) World Finals 2015