CF1547A.Shortest Path with Obstacle

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There are three cells on an infinite 2-dimensional grid, labeled AA , BB , and FF . Find the length of the shortest path from AA to BB if:

  • in one move you can go to any of the four adjacent cells sharing a side;
  • visiting the cell FF is forbidden (it is an obstacle).

输入格式

The first line contains an integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases in the input. Then tt test cases follow. Before each test case, there is an empty line.

Each test case contains three lines. The first one contains two integers xA,yAx_A, y_A ( 1xA,yA10001 \le x_A, y_A \le 1000 ) — coordinates of the start cell AA . The second one contains two integers xB,yBx_B, y_B ( 1xB,yB10001 \le x_B, y_B \le 1000 ) — coordinates of the finish cell BB . The third one contains two integers xF,yFx_F, y_F ( 1xF,yF10001 \le x_F, y_F \le 1000 ) — coordinates of the forbidden cell FF . All cells are distinct.

Coordinate xx corresponds to the column number and coordinate yy corresponds to the row number (see the pictures below).

输出格式

Output tt lines. The ii -th line should contain the answer for the ii -th test case: the length of the shortest path from the cell AA to the cell BB if the cell FF is not allowed to be visited.

输入输出样例

  • 输入#1

    7
    
    1 1
    3 3
    2 2
    
    2 5
    2 1
    2 3
    
    1000 42
    1000 1
    1000 1000
    
    1 10
    3 10
    2 10
    
    3 8
    7 8
    3 7
    
    2 1
    4 1
    1 1
    
    1 344
    1 10
    1 1

    输出#1

    4
    6
    41
    4
    4
    2
    334

说明/提示

An example of a possible shortest path for the first test case. An example of a possible shortest path for the second test case.

首页