There is a building with flat square roof of size and sides parallel to north-south and east-west directions. The roof is covered with square tiles of size (with a side of length ), but one of the tiles has been removed and there is a hole in the roof (big enough to fall in). The tiles form a rectangular mesh on the roof, so their positions may be specified with coordinates. The tile at the southwestern corner has coordinates . The first coordinate increases while going eastwards, and the second while going northwards.
Sleepwalker wanders across the roof, in each step moving from the tile he is standing on to the adjacent one on the east(E), west(W), south(S), or north(N). The sleepwalker roof ramble starts from the southwestern corner tile. The description of the path is a word dk built of the letters N, S, E, W denoting respectively a step to the north, south, east and west. For the word describing the path of sleepwalker is EENNWSWN
.
For the word describing the path of sleepwalker is NNEESWSEENNEESWSEEEENNWSWNNEENNWSWNNEENNWSWNWWWSSENESSSSWWNENWWSSWWNENWNEENNWSWN
.
(See the picture that shows how the sleepwalker would go across a roof of dimension or .)
Generally, if , the description of a sleepwalker’s path on the roof of dimension is a word:
E E N N W S W N
where functions , and denote the following permutations of letters specifying directions:
a: E->N W->S N->E S->W
b: E->S W->N N->W S->E
c: E->W W->E N->S S->N
E.g. .
We start observing sleepwalker at the time he stands on the tile of coordinates . After how many steps will sleepwalker fall into the hole made after removing the tile of coordinates ?
Write a program which:
- reads integer denoting the size of the roof (), the position of the sleepwalker at the moment the observation starts and the position of the hole,
- computes the number of steps that the sleepwalker will make before he falls into the hole,
- writes the result.
输入格式
In the first line is one integer , , denoting the size of the roof is written. In each of the following two lines are two natural numbers separated with a space are written, , . The numbers in the second line are the coordinates of the tile the sleepwalker is standing on. The numbers in the third line are the coordinates of the hole. You may assume, that with these data the sleepwalker will eventually fall into the hole after some number of steps.
输出格式
The only line should contain the number of steps on the sleepwalker’s path to the hole.
提示
There are sleepwalker’s paths on roofs of dimension and on the picture below. In the second case, the point at which the observation starts and the hole have been marked. The sleepwalker has exactly steps to the hole (from the moment the observation starts).
