CF1811B.Conveyor Belts

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Conveyor matrix mnm_n is matrix of size n×nn \times n , where nn is an even number. The matrix consists of concentric ribbons moving clockwise.

In other words, the conveyor matrix for n=2n = 2 is simply a matrix 2×22 \times 2 , whose cells form a cycle of length 44 clockwise. For any natural k2k \ge 2 , the matrix m2km_{2k} is obtained by adding to the matrix m2k2m_{2k - 2} an outer layer forming a clockwise cycle.

The conveyor matrix 8×88 \times 8 . You are standing in a cell with coordinates x1,y1x_1, y_1 and you want to get into a cell with coordinates x2,y2x_2, y_2 . A cell has coordinates x,yx, y if it is located at the intersection of the xx th row and the yy th column.

Standing on some cell, every second you will move to the cell next in the direction of movement of the tape on which you are. You can also move to a neighboring cell by spending one unit of energy. Movements happen instantly and you can make an unlimited number of them at any time.

Your task is to find the minimum amount of energy that will have to be spent to get from the cell with coordinates x1,y1x_1, y_1 to the cell with coordinates x2,y2x_2, y_2 .

For example, n=8n=8 initially you are in a cell with coordinates 1,31,3 and you want to get into a cell with coordinates 6,46, 4 . You can immediately make 22 movements, once you are in a cell with coordinates 3,33, 3 , and then after 88 seconds you will be in the right cell.

输入格式

The first line contains an integer tt ( 1t21051 \le t \le 2 \cdot 10^5 ) — the number of test cases.

The descriptions of the test cases follow.

The description of each test case consists of one string containing five integers nn , x1x_1 , y1y_1 , x2x_2 and y2y_2 ( 1x1,y1,x2,y2n1091 \le x_1, y_1, x_2, y_2 \le n \le 10^9 ) — matrix size and the coordinates of the start and end cells. It is guaranteed that the number nn is even.

输出格式

For each test case, print one integer in a separate line — the minimum amount of energy that will have to be spent to get from the cell with coordinates x1,y1x_1, y_1 to the cell with coordinates x2,y2x_2, y_2 .

输入输出样例

  • 输入#1

    5
    2 1 1 2 2
    4 1 4 3 3
    8 1 3 4 6
    100 10 20 50 100
    1000000000 123456789 987654321 998244353 500000004

    输出#1

    0
    1
    2
    9
    10590032
首页