CF1715A.Crossmarket

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Stanley and Megan decided to shop in the "Crossmarket" grocery store, which can be represented as a matrix with nn rows and mm columns.

Stanley and Megan can move to an adjacent cell using 11 unit of power. Two cells are considered adjacent if they share an edge. To speed up the shopping process, Megan brought her portals with her, and she leaves one in each cell she visits (if there is no portal yet). If a person (Stanley or Megan) is in a cell with a portal, that person can use 11 unit of power to teleport to any other cell with a portal, including Megan's starting cell.

They decided to split up: Stanley will go from the upper-left cell (cell with coordinates (1,1)(1, 1) ) to the lower-right cell (cell with coordinates (n,m)(n, m) ), whilst Megan needs to get from the lower-left cell (cell with coordinates (n,1)(n, 1) ) to the upper-right cell (cell with coordinates (1,m)(1, m) ).

What is the minimum total energy needed for them both to do that?

Note that they can choose the time they move. Time does not affect energy.

输入格式

Each test contains multiple test cases. The first line contains the number of test cases tt ( 1t10001 \le t \le 1000 ). Description of the test cases follows.

The only line in the test case contains two integers nn and mm ( 1n,m1051 \le n, m \le 10^5 ).

输出格式

For each test case print a single integer on a new line – the answer.

输入输出样例

  • 输入#1

    7
    7 5
    5 7
    1 1
    100000 100000
    57 228
    1 5
    5 1

    输出#1

    15
    15
    0
    299998
    340
    5
    5

说明/提示

In the first test case they can stick to the following plan:

  1. Megan (red circle) moves to the cell (7,3)(7, 3) . Then she goes to the cell (1,3)(1, 3) , and Stanley (blue circle) does the same.
  2. Stanley uses the portal in that cell (cells with portals are grey) to get to the cell (7,3)(7, 3) . Then he moves to his destination — cell (7,5)(7, 5) .
  3. Megan also finishes her route and goes to the cell (1,5)(1, 5) .

The total energy spent is (2+6)+(2+1+2)+(2)=15(2 + 6) + (2 + 1 + 2) + (2)= 15 , which is our final answer.

首页