CF1700A.Optimal Path

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given a table aa of size n×mn \times m . We will consider the table rows numbered from top to bottom from 11 to nn , and the columns numbered from left to right from 11 to mm . We will denote a cell that is in the ii -th row and in the jj -th column as (i,j)(i, j) . In the cell (i,j)(i, j) there is written a number (i1)m+j(i - 1) \cdot m + j , that is aij=(i1)m+ja_{ij} = (i - 1) \cdot m + j .

A turtle initially stands in the cell (1,1)(1, 1) and it wants to come to the cell (n,m)(n, m) . From the cell (i,j)(i, j) it can in one step go to one of the cells (i+1,j)(i + 1, j) or (i,j+1)(i, j + 1) , if it exists. A path is a sequence of cells in which for every two adjacent in the sequence cells the following satisfies: the turtle can reach from the first cell to the second cell in one step. A cost of a path is the sum of numbers that are written in the cells of the path.

For example, with n=2n = 2 and m=3m = 3 the table will look as shown above. The turtle can take the following path: (1,1)(1,2)(1,3)(2,3)(1, 1) \rightarrow (1, 2) \rightarrow (1, 3) \rightarrow (2, 3) . The cost of such way is equal to a11+a12+a13+a23=12a_{11} + a_{12} + a_{13} + a_{23} = 12 . On the other hand, the paths (1,1)(1,2)(2,2)(2,1)(1, 1) \rightarrow (1, 2) \rightarrow (2, 2) \rightarrow (2, 1) and (1,1)(1,3)(1, 1) \rightarrow (1, 3) are incorrect, because in the first path the turtle can't make a step (2,2)(2,1)(2, 2) \rightarrow (2, 1) , and in the second path it can't make a step (1,1)(1,3)(1, 1) \rightarrow (1, 3) .

You are asked to tell the turtle a minimal possible cost of a path from the cell (1,1)(1, 1) to the cell (n,m)(n, m) . Please note that the cells (1,1)(1, 1) and (n,m)(n, m) are a part of the way.

输入格式

The first line contains a single integer tt ( 1t10001 \leq t \leq 1000 ) — the number of test cases. The description of test cases follows.

A single line of each test case contains two integers nn and mm ( 1n,m1041 \leq n, m \leq 10^4 ) — the number of rows and columns of the table aa respectively.

输出格式

For each test case output a single integer — a minimal possible cost of a path from the cell (1,1)(1, 1) to the cell (n,m)(n, m) .

输入输出样例

  • 输入#1

    7
    1 1
    2 3
    3 2
    7 1
    1 10
    5 5
    10000 10000

    输出#1

    1
    12
    13
    28
    55
    85
    500099995000

说明/提示

In the first test case the only possible path consists of a single cell (1,1)(1, 1) .

The path with the minimal cost in the second test case is shown in the statement.

In the fourth and the fifth test cases there is only one path from (1,1)(1, 1) to (n,m)(n, m) . Both paths visit every cell in the table.

首页