CF1676D.Sum

传统题 时间 2000 ms 内存 256 MiB 5 尝试 1 已通过 1 标签

Sum

Timur's grandfather gifted him a chessboard to practice his chess skills. This chessboard is a grid aa with nn rows and mm columns with each cell having a non-negative integer written on it.

Timur's challenge is to place a bishop on the board such that the sum of all cells attacked by the bishop is maximal. The bishop attacks in all directions diagonally, and there is no limit to the distance which the bishop can attack. Note that the cell on which the bishop is placed is also considered attacked. Help him find the maximal sum he can get.

Input

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

The first line of each test case contains the integers nn and mm (1n2001 \le n \le 200, 1m2001 \leq m \leq 200).

The following nn lines contain mm integers each, the jj-th element of the ii-th line aija_{ij} is the number written in the jj-th cell of the ii-th row (0aij106)(0\leq a_{ij} \leq 10^6)

It is guaranteed that the sum of nmn\cdot m over all test cases does not exceed 41044\cdot10^4.

Output

For each test case output a single integer, the maximum sum over all possible placements of the bishop.

Note

For the first test case here the best sum is achieved by the bishop being in this position:

Samples

4
4 4
1 2 2 1
2 4 2 4
2 2 3 1
2 4 2 4
2 1
1
0
3 3
1 1 1
1 1 1
1 1 1
3 3
0 1 1
1 0 1
1 1 0
20
1
5
3

在线编程 IDE

建议全屏模式获得最佳体验