POJ 2242 The Circumference of the Circle:计算几何2014-07-22 csdn博客 synapse7The Circumference of the Circlehttp://poj.org/problem?id=2242Time Limit: 1000MSMemory Limit: 65536KDescriptionTo calculate the circumference of a circle seems to be an easy task - provided you know its diameter. But what if you don"t?You are given the cartesian coordinates of three non-collinear points in the plane.Your job is to calculate the circumference of the unique circle that intersects all three points.InputThe input will contain one or more test cases. Each test case consists of one line containing six real numbers x1,y1, x2,y2,x3,y3, representing the coordinates of the three points. The diameter of the circle determined by the three points will never exceed a million. Input is terminated by end of file.OutputFor each test case, print one line containing one real number telling the circumference of the circle determined by the three points. The circumference is to be printed accurately rounded to two decimals. The value of pi is approximately 3.141592653589793.Sample Input0.0 -0.5 0.5 0.0 0.0 0.50.0 0.0 0.0 1.0 1.0 1.05.0 5.0 5.0 7.0 4.0 6.00.0 0.0 -1.0 7.0 7.0 7.050.0 50.0 50.0 70.0 40.0 60.00.0 0.0 10.0 0.0 20.0 1.00.0 -500000.0 500000.0 0.0 0.0 500000.0Sample Output3.144.446.2831.4262.83632.243141592.65SourceUlm Local 1996由S=(a*b*sinC)/2和c/sinC=外接圆直径d得d=(a*b*c)/(2*S)S由有向面积(行列式)得出注意:POJ上的C++不支持C99,但G++支持完整代码:
/*0ms,588KB*/#include<cstdio>#include<cmath>const double PI = acos(-1.0);inline double area(double x0, double y0, double x1, double y1, double x2, double y2){return fabs(x0 * y1 + x2 * y0 + x1 * y2 - x2 * y1 - x0 * y2 - x1 * y0);}int main(void){double x0, y0, x1, y1, x2, y2;while (~scanf("%lf%lf%lf%lf%lf%lf", &x0, &y0, &x1, &y1, &x2, &y2))printf("%.2f
", hypot(x0 - x1, y0 - y1) * hypot(x1 - x2, y1 - y2) * hypot(x0 - x2, y0 - y2) * PI / area(x0, y0, x1, y1, x2, y2));return 0;}