|
||||||||||
One to FourTime Limit: 12000/6000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 232 Accepted Submission(s): 69 Problem Description Given one n * m matrix consist of only positive numbers, It is guaranteed that the product of n and m is a multiple of 4, therefore, we can divide it into four identical parts(that is, every part is a 4-connected subset and we can obtain each part from each other by rotation and translation, every element must be included in exactly one part). (Grids that from the same part are labeled by the same colour, all four partitions above are valid.) Note that the partition below is NOT valid because we can only use translation and rotation, no symmetrical reverse: Once we choose a partition, we can choose some translation and rotation to make these four parts coincide, finally we add up every four values lying on the same grid and choose the minimum sum as the score of the partition and transformation. Now you're given the matrix, your task is to choose a proper partition and transformation to get the maximum score. Input There are several testcases, please process till EOF. In each test case, first line contains two integers n and m. Following n lines each contains m integers Aij, describing the matrix. 1 ¡Ü n,m ¡Ü 30,1 ¡Ü Aij ¡Ü 10000. Output For each testcase output one line contains one integer: the maximum score you can get. Sample Input
Sample Output
Author Fudan University Source | ||||||||||
|