题库练习 Crossmarket
← 上一题 下一题 →

A15350 | Crossmarket

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

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

Stanley and Megan can move to an adjacent cell using $1$ 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 $1$ 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)$ ) to the lower-right cell (cell with coordinates $(n, m)$ ), whilst Megan needs to get from the lower-left cell (cell with coordinates $(n, 1)$ ) to the upper-right cell (cell with coordinates $(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 $t$ ( $1 \le t \le 1000$ ). Description of the test cases follows.

The only line in the test case contains two integers $n$ and $m$ ( $1 \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
C++ 编辑器
输入
输出