TopCoder

User's AC Ratio

NaN% (0/0)

Submission's AC Ratio

NaN% (0/0)

Tags

Description

Bill is working in a secret laboratory. He is developing missiles for national security projects. Bill is the head of the aerodynamics department. One surprising fact of aerodynamics is called Whitcomb area rule. An object flying at high-subsonic speeds develops local supersonic airflows and the resulting shock waves create the effect called wave drag. Wave drag does not depend on the exact form of the object, but rather on its cross-sectional profile. Consider a coordinate system with OZ axis pointing in the direction of object's motion. Denote the area of a section of the object by a plane z = z0 as S(z0) . Cross-sectional profile of the object is a function S that maps z0 to S(z0) . There is a perfect aerodynamic shape called Sears-Haack body. The closer cross-sectional profile of an object to the cross-sectional profile of Sears-Haack body, the less wave drag it introduces. That is an essence of Whitcomb area rule. Bill's department makes a lot of computer simulations to study missile's aerodynamic properties before it is even built. To approximate missile's cross-sectional profile one takes samples of S(z0) for integer arguments z0 from zmin to zmax.




Your task is to find the area S(z0) for each integer z0 from zmin to zmax , inclusive, given the description of the missile. The description of the missile is given to you as a set of points. The missile is the minimal convex solid containing all the given points. It is guaranteed that there are four points that do not belong to the same plane.

Input Format

There are multiple test cases, terminated by EOF.

The first line of the input contains three integer numbers: n , zmin and zmax ( 4<=n<=100 , 0<=zmin<=zmax<=100 ). The following n lines contain three integer numbers each: x , y , and z coordinates of the given points. All coordinates do not exceed 100 by their absolute values. No two points coincide. There are four points that do not belong to the same plane.

Output Format

For each test case, for each integer z0 from zmin to zmax , inclusive, output one floating point number: the area S(z0) . The area must be precise to at least 5 digits after decimal point. You don't have to output any empty lines between consecutive test cases.

Sample Input 1

9 0 5
0 0 5
-3 0 2
0 -1 2
3 0 2
0 1 2
2 2 0
2 -2 0
-2 -2 0
-2 2 0

4 0 10
0 -5 3
0 5 3
-3 0 8
3 0 8

Sample Output 1

16.00000
14.92000
10.08000
4.48000
1.12000
0.00000
0.0
0.0
0.0
0.0
9.6000000000
14.4000000000
14.4000000000
9.6000000000
0.0
0.0
0.0

Hints

Info: 本題輸出為浮點數,絕對或相對誤差 1e-5 以下視為正確

Problem Source

Migrated from old NTUJ.

NEERC 08 pA

Subtasks

No. Testdata Range Score

Testdata and Limits

No. Time Limit (ms) Memory Limit (VSS, KiB) Output Limit (KiB) Subtasks
0 10000 65536 200