3459. Matrix Cutting (Small)

单点时限: 2.0 sec

内存限制: 256 MB

Prof Shekhu has a matrix of $N$ rows and $M$ columns where rows are numbered from $0$ to $N-1$ from top to bottom, and columns are numbered from $0$ to $M-1$ from left to right. Each cell in the matrix contains a positive integer.

He wants to cut this matrix into $N \times M$ submatrices (each of size $1 \times 1$) by making horizontal and vertical cuts. A cut can be made only on the boundary between two rows or two columns.

Prof Shekhu invites his best student Akki for this job and makes an interesting proposition. Every time Akki makes a cut in a submatrix, before he makes the cut, he is awarded a number of coins equal to the minimum value in that submatrix. Note that with every cut, the total number of submatrices increases. Also, cuts in any two different submatrices are independent and likewise, Akki is awarded independently for the cuts in different submatrices.

Now, Akki has various ways in which he can make the cuts. Can you help him by maximizing the total number of coins he can gain?

输入格式

The first line of the input contains an integer $T$, the number of test cases. $T$ test cases follow. The first line of each test case contains two integers $N$ and $M$, as described above.

Next, there are $N$ lines of $M$ positive integers each; these describe the matrix.

  • Limits: $1 \le T \le 100, 1 \le \mathrm{each \ value \ in \ the \ matrix} \le 10^5$.
  • Small: $N = 1, 1 \le M \le 10$.
  • Large: $1 \le N \le 40, 1 \le M \le 40$.

输出格式

For each test case, output one line containing Case #x: y, where x is the test case number (starting from 1) and y is the maximum possible number of coins that Akki can be awarded, if he makes the cuts in optimal order.

样例

Input
3
2 2
1 2
3 4
2 3
1 2 1
2 3 2
1 2
1 2
Output
Case #1: 5
Case #2: 7
Case #3: 1

提示

In Sample Case #1, there are two possible ways in which Akki can make the cuts.

  1. Suppose that Akki first cuts the matrix horizontally. He is awarded the minimum value in the matrix: 1. Then he has to make vertical cuts in the two submatrices ([1, 2] and [3, 4]), for which he gets 1 and 3 coins, respectively.
  2. Suppose that Akki first cuts the matrix vertically. He is awarded the minimum value in the matrix: 1. Then he has to make horizontal cuts in the two submatrices (which have the transposes [1, 3] and [2, 4]), for which he gets 1 and 2 coins, respectively.

The first strategy is better, and the answer is 5.

In Sample Case #2, Akki can be awarded at most 7 coins. One of the optimal ways is to first make the only horizontal cut to earn 1 coin. Then, in the upper submatrix [1, 2, 1], Akki can first make the cut immediately to the right of first column and then the cut immediately to the right of second column to earn a total of 2 coins. Similarly, in the lower submatrix [2, 3, 2], Akki can first make the cut immediately to the right of second column and then the cut immediately to the right of first column to earn a total of 4 coins.

In Sample Case #3, there is only one cut to be made.

9 人解决,10 人已尝试。

12 份提交通过,共有 19 份提交。

5.0 EMB 奖励。

创建: 6 年,4 月前.

修改: 6 年,4 月前.

最后提交: 2 年前.

来源: Kickstart 2017 Round G

题目标签