http://codeforces.com/problemset/problem/1/C
https://tech.liuchao.me/2016/11/codeforces-1c/
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.
Examples
input
0.000000 0.000000 1.000000 1.000000 0.000000 1.000000
output
1.00000000
public
static
void
main(String[] args)
throws
IOException {
BufferedReader stdin =
new
BufferedReader(
new
InputStreamReader(System.in));
String pointA[] = stdin.readLine().split(
" "
);
String pointB[] = stdin.readLine().split(
" "
);
String pointC[] = stdin.readLine().split(
" "
);
double
Ax = Double.parseDouble(pointA[
0
]), Ay = Double.parseDouble(pointA[
1
]);
double
Bx = Double.parseDouble(pointB[
0
]), By = Double.parseDouble(pointB[
1
]);
double
Cx = Double.parseDouble(pointC[
0
]), Cy = Double.parseDouble(pointC[
1
]);
double
a = Math.sqrt((Bx - Cx) * (Bx - Cx) + (By - Cy) * (By - Cy));
double
b = Math.sqrt((Ax - Cx) * (Ax - Cx) + (Ay - Cy) * (Ay - Cy));
double
c = Math.sqrt((Ax - Bx) * (Ax - Bx) + (Ay - By) * (Ay - By));
double
p = (a + b + c) /
2
;
double
S = Math.sqrt(p * (p - a) * (p - b) * (p - c));
double
R = a * b * c / (
4
* S);
double
alpha = Math.acos((b * b + c * c - a * a) / (
2
* b * c));
double
beta = Math.acos((a * a + c * c - b * b) / (
2
* a * c));
double
gamma = Math.PI - alpha - beta;
long
n = Math.round(Math.PI / gcd(beta, gcd(alpha, gamma)));
PrintWriter stdout =
new
PrintWriter(System.out);
stdout.println(R * R * Math.sin(
2
* Math.PI / n) * n /
2
);
stdout.close();
}
private
static
double
gcd(
double
a,
double
b) {
if
(a < b)
return
gcd(b, a);
if
(Math.abs(b) <
0.001
) {
return
a;
}
else
{
return
(gcd(b, a - Math.floor(a / b) * b));
}
}
}