You are given a positive integer array sides of length 3.
Determine if there exists a triangle with positive area whose three side lengths are given by the elements of sides.
If such a triangle exists, return an array of three floating-point numbers representing its internal angles (in degrees), sorted in non-decreasing order. Otherwise, return an empty array.
Answers within 10-5 of the actual answer will be accepted.
Β
Example 1:
Input:sides = [3,4,5]
Output:[36.86990,53.13010,90.00000]
Explanation:
You can form a right-angled triangle with side lengths 3, 4, and 5. The internal angles of this triangle are approximately 36.869897646, 53.130102354, and 90 degrees respectively.
Example 2:
Input:sides = [2,4,2]
Output:[]
Explanation:
You cannot form a triangle with positive area using side lengths 2, 4, and 2.
Β
Constraints:
sides.length == 3
1 <= sides[i] <= 1000
Solutions
Solution 1: Sorting + Math
We first sort the array \(\textit{sides}\) in non-decreasing order, and denote the three side lengths as \(a\), \(b\), and \(c\), where \(a \le b \le c\).
According to the triangle inequality, if \(a + b \le c\), then these three sides cannot form a triangle with positive area, so we return an empty array directly.
Otherwise, the three sides can form a valid triangle. By the law of cosines, we have:
\[ \cos A = \frac{b^2 + c^2 - a^2}{2bc} \]
\[ \cos B = \frac{a^2 + c^2 - b^2}{2ac} \]
Therefore, we can compute angles \(A\) and \(B\) separately. Finally, using the fact that the sum of the internal angles of a triangle is \(180^\circ\), we get:
\[ C = 180^\circ - A - B \]
Finally, we return the three internal angles.
The time complexity is \(O(1)\), and the space complexity is \(O(1)\).