Solar Energy

아직 제출이 없습니다시간 제한9초메모리 제한1024 MB

문제

You are planning to travel in interstellar space in the hope of finding habitable planets. You have already identified NN stars that can recharge your spaceship via its solar panels. The only work left is to decide the orientation of the spaceship that maximizes the distance it can travel.

Space is modeled as a 2D plane, with the Earth at the origin. The spaceship can be launched from the Earth in a straight line, in any direction. Star ii can provide enough energy to travel T_iT\_i distance if the spaceship is launched at an angle of a_ia\_i with the xx-axis. If the angle is not perfectly aligned, then the spaceship gets less energy. Specifically, if the launch direction makes an angle of aa with the xx-axis, then it gets enough energy to travel distance of \[\max(0, T_i - s_i \cdot \mathrm{dist}(a_i, a))\] from star ii, where dist(a,b)\mathrm{dist}(a,b) is the minimum radians needed to go from angle aa to bb. The distance that the spaceship can travel is simply the sum of the distances that each star contributes. Find the maximum distance TT that the starship can travel.

입력

The first line contains the value NN, 1N1051\le N\le 10^5.  Following this are NN lines each containing three real numbers T_iT\_i, s_is\_i, and a_ia\_i, with 0\<T_i1,0000\<T\_i\le 1\\,000, 0s_i1000\le s\_i\le 100, and 0a_i<2π0\le a\_i < 2\pi. All real numbers in the input have at most 66 digits after the decimal point.

출력

On a single line output the maximum distance the spacecraft can travel. Your answer is considered correct if it has an absolute or relative error of at most 10610^{-6}.