Algorithm


C. View Angle
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Flatland has recently introduced a new type of an eye check for the driver's licence. The check goes like that: there is a plane with mannequins standing on it. You should tell the value of the minimum angle with the vertex at the origin of coordinates and with all mannequins standing inside or on the boarder of this angle.

As you spend lots of time "glued to the screen", your vision is impaired. So you have to write a program that will pass the check for you.

Input

The first line contains a single integer n (1 ≤ n ≤ 105) — the number of mannequins.

Next n lines contain two space-separated integers each: xi, yi (|xi|, |yi| ≤ 1000) — the coordinates of the i-th mannequin. It is guaranteed that the origin of the coordinates has no mannequin. It is guaranteed that no two mannequins are located in the same point on the plane.

Output

Print a single real number — the value of the sought angle in degrees. The answer will be considered valid if the relative or absolute error doesn't exceed 10 - 6.

Examples
input
Copy
2
2 0
0 2
output
Copy
90.0000000000
input
Copy
3
2 0
0 2
-2 2
output
Copy
135.0000000000
input
Copy
4
2 0
0 2
-2 0
0 -2
output
Copy
270.0000000000
input
Copy
2
2 1
1 2
output
Copy
36.8698976458
Note

Solution for the first sample test is shown below:

Solution for the second sample test is shown below:

Solution for the third sample test is shown below:

Solution for the fourth sample test is shown below:

 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include <bits/stdc++.h>

using namespace std;

int const N = 1e5 + 1;
long double const PI = acos(-1);
int n, gcd, a[N], b[N];
long double angs[N];

int main() {
  // third quarter +360
  // forth quarter +360
  // negative y-axis +360

  cin >> n;
  for(int i = 0; i < n; ++i) {
  	cin >> a[i] >> b[i];
  	angs[i] = atan2(b[i], a[i]) * 180 / PI;

  	if(a[i] == 0 && b[i] < 0 || a[i] < 0 && b[i] < 0 || a[i] > 0 && b[i] < 0)
  		angs[i] += 360;
  }

  sort(angs, angs + n);

  long double res = 361;
  for(int i = 1; i < n; ++i)
  	res = min(res, 360 - (angs[i] - angs[i - 1]));
  res = min(res, (angs[n - 1] - angs[0]));

  cout << fixed << setprecision(10) << res << endl;

  return 0;
}
Copy The Code & Try With Live Editor

Input

x
+
cmd
2
2 0
0 2

Output

x
+
cmd
90.0000000000
Advertisements

Demonstration


Codeforces Solution-View Angle-Solution in C, C++, Java, Python

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+