CF820B.Mister B and Angle in Polygon
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
On one quiet day all of sudden Mister B decided to draw angle a on his field. Aliens have already visited his field and left many different geometric figures on it. One of the figures is regular convex n -gon (regular convex polygon with n sides).
That's why Mister B decided to use this polygon. Now Mister B must find three distinct vertices v1 , v2 , v3 such that the angle (where v2 is the vertex of the angle, and v1 and v3 lie on its sides) is as close as possible to a . In other words, the value
should be minimum possible.
If there are many optimal solutions, Mister B should be satisfied with any of them.
输入格式
First and only line contains two space-separated integers n and a ( 3<=n<=105 , 1<=a<=180 ) — the number of vertices in the polygon and the needed angle, in degrees.
输出格式
Print three space-separated integers: the vertices v1 , v2 , v3 , which form . If there are multiple optimal solutions, print any of them. The vertices are numbered from 1 to n in clockwise order.
输入输出样例
输入#1
3 15
输出#1
1 2 3
输入#2
4 67
输出#2
2 1 3
输入#3
4 68
输出#3
4 1 2
说明/提示
In first sample test vertices of regular triangle can create only angle of 60 degrees, that's why every possible angle is correct.
Vertices of square can create 45 or 90 degrees angles only. That's why in second sample test the angle of 45 degrees was chosen, since |45-67|<|90-67| . Other correct answers are: "3 1 2", "3 2 4", "4 2 3", "4 3 1", "1 3 4", "1 4 2", "2 4 1", "4 1 3", "3 1 4", "3 4 2", "2 4 3", "2 3 1", "1 3 2", "1 2 4", "4 2 1".
In third sample test, on the contrary, the angle of 90 degrees was chosen, since |90-68|<|45-68| . Other correct answers are: "2 1 4", "3 2 1", "1 2 3", "4 3 2", "2 3 4", "1 4 3", "3 4 1".