시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB195433.333%

문제

You have a chessboard of size N x N. The rows and columns are numbered from 1 to N. In a cell located at row R1 and column C1, a knight is starting his journey. The knight wants to go to the cell located at row R2 and column C2. Move the knight from the starting cell to this destination cell with minimum number of moves.  

As a reminder, a knight's jump moves him 2 cells along one of the axes, and 1 cell along the other one. In other words, if a knight is at (A,B), it may move to (A‐2,B ‐1), (A‐2, B+1), (A+2, B‐1), (A+2, B+1), (A‐1, B‐2), (A+1,B‐2), (A‐1, B+2) or (A+1, B+2).  Of course, the knight cannot leave the board.

Given N, R1, C1, R2 and C2, determine the minimum number of steps necessary to move the knight from (R1, C1) to (R2, C2).  

입력

The first input line contains a positive integer,T, indicating the number of test cases.  Each case consists of a line containing five integers N(3≤N≤1015), R1, C1, R2 and  are between 1 and N inclusive.  

출력

For each test case, output the minimum number of steps needed to move the knight from (R1, C1) to (R2, C2). Assume that there will always be a solution, i.e., it’s possible to move the knight from its starting cell to its destination cell.  

예제 입력 1

2
5 1 1 2 3
5 1 1 2 2

예제 출력 1

1
4