Hide

Failing Flagship

Ahoy! You are sailing towards the next “Boats Are Pretty Cool” convention to sell your latest gadget: a new type of compass.

On a normal compass, it is difficult to read off the precise wind direction. However, your new type of compass lets you read off wind directions to a much higher precision! The display can display strings of at most $1000$ characters.

Unfortunately, you have encountered some bad weather. After a few hours of heavy winds and big waves, you can finally look at your compass again. You read off the wind direction $X$ you are going and know in which wind direction $Y$ you need to go. However, to make the ship turn you have to enter the degrees of the angle the ship has to make in the control system. What is the smallest turn, in degrees, you have to make to get back on the right course?

\includegraphics{figure.pdf}
Figure 1: Wind directions

The conversion of a wind direction to degrees goes as follows. The four basic wind directions are N, E, S, and W pointing at $0$, $90$, $180$, and $270$ degrees, respectively. There are also four wind directions consisting of two letters: NE, SE, SW, and NW, pointing at $45$, $135$, $225$, and $315$ degrees, respectively.

A wind direction can also consist of $k\geq 3$ letters $l_1l_2\ldots l_k$. In that case, the last two letters indicate one of the four two-letter wind directions, i.e., $l_{k-1}l_k \in \{ \text{NE}, \text{SE}, \text{SW}, \text{NW}\} $ and the other letters are equal to one of these, i.e., $l_i \in \{ l_{k-1}, l_k\} $ for all $i \leq k-2$. This wind direction points precisely in the middle of the following two wind directions:

  • wind direction $l_2\ldots l_k$,

  • the first wind direction of at most $k-1$ letters you encounter when starting in $l_2\ldots l_k$ and move along the circle towards $l_1$.

For example, the wind direction SSSE points in the middle of SSE and S, because S is the first wind direction with at most 3 letters when moving from SSE towards S, as can also been seen in Figure 1.

Input

The input consists of:

  • One line with two strings $X$ and $Y$ ($1 \leq |X|, |Y| \leq 1000$), indicating the wind directions as described above.

Output

Output the smallest angle of the turn you have to make to go from direction $X$ to $Y$, in degrees. The angle is a non-negative number, irrespective of whether it describes a clockwise or counter-clockwise turn.

Your answer should have an absolute error of at most $10^{-6}$.

Sample Input 1 Sample Output 1
N S
180
Sample Input 2 Sample Output 2
NNE SSSE
146.25
Sample Input 3 Sample Output 3
ENE NW
112.5

Please log in to submit a solution to this problem

Log in