1C. Ancient Berland Circus

一、Problem

Nowadays all circuses in Berland have a round arena with diameter 13 meters, but in the past things were different.

In Ancient Berland arenas in circuses were shaped as a regular (equiangular) polygon, the size and the number of angles could vary from one circus to another. In each corner of the arena there was a special pillar, and the rope strung between the pillars marked the arena edges.

Recently the scientists from Berland have discovered the remains of the ancient circus arena. They found only three pillars, the others were destroyed by the time.

You are given the coordinates of these three pillars. Find out what is the smallest area that the arena could have.

Input
The input file consists of three lines, each of them contains a pair of numbers –– coordinates of the pillar. Any coordinate doesn’t exceed 1000 by absolute value, and is given with at most six digits after decimal point.

Output
Output the smallest possible area of the ancient arena. This number should be accurate to at least 6 digits after the decimal point. It’s guaranteed that the number of angles in the optimal polygon is not larger than 100.

二、Example

input

0.000000 0.000000
1.000000 1.000000
0.000000 1.000000

output

1.00000000

三、Code

package com.codeforces.problemset;

import java.awt.geom.Point2D;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
 
public class AncientBerlandCircus {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		
		String input = br.readLine();
		String[] inputs = input.split(" ");
		double x1 = Double.parseDouble(inputs[0]);
		double y1 = Double.parseDouble(inputs[1]);
		
		input = br.readLine();
		String[] inputs2 = input.split(" ");
		double x2 = Double.parseDouble(inputs2[0]);
		double y2 = Double.parseDouble(inputs2[1]);
		
		input = br.readLine();
		String[] inputs3 = input.split(" ");
		double x3 = Double.parseDouble(inputs3[0]);
		double y3 = Double.parseDouble(inputs3[1]);
		
		double a = Point2D.distance(x1, y1, x2, y2);
	    double b = Point2D.distance(x1, y1, x3, y3);
	    double c = Point2D.distance(x2, y2, x3, y3);
	    
	    double A = Math.acos((b * b + c * c - a * a) / (2 * b * c));
	    double B = Math.acos((a * a + c * c - b * b) / (2 * a * c)); 
	    double C = Math.acos((b * b + a * a - c * c) / (2 * a * b));
	    
	    double R = a / Math.sin(A) / 2;
	    double n = Math.PI / gcd(A, gcd(B, C));
	    double S = n / 2 * R * R * Math.sin(2 * Math.PI / n);
	 
	    System.out.print(S);
	}
 
	private static double gcd(double x, double y) {
		if (y < Math.PI / 100.0) {
			return x;
		} else {
			return gcd(y, x % y);
		}
	}
}
发布了332 篇原创文章 · 获赞 198 · 访问量 12万+

猜你喜欢

转载自blog.csdn.net/riemann_/article/details/103395673