#Lutece0088. Fold The Paper
Fold The Paper
Migrated from Lutece 88 Fold The Paper
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
You have a rectangular piece of paper that is divided into cells, each of which has an integer value.
You want to perform a sequence of folds on the paper, where you may fold anywhere along an axis that is in between two rows or columns of the paper. After performing all the folds you want, the overlapping cells will be considered as a single cell, whose value is the sum of the individual cells.
You want the biggest number in the resulting piece of paper to be as large as possible, what is the biggest number you can get ?
Input
First line of the input is a single integer (), indicating there are test cases. For each test case, the first line contains two integers, and (), indicating the length and width of the paper. Then lines followed, each line contains integers (), indicating the numbers in the original piece of paper.
Output
For each case,output Case #t: ret
in a single line, where indicating the case number between and , and
is the biggest number you can get in the resulting piece of paper.
Samples
2
2 2
1 -2
3 -4
2 5
1 -2 -3 4 -5
6 -7 -8 9 -10
Case #1: 4
Case #2: 20
Note
- Of course, if you do not fold any cells, the value of each cell is its original value.
- Explanation for the 2nd Case in Sample Input
3. Note that merging the overlapping cells only happens after all the folds, which means:
Resources
Sichuan State Programming Contest 2012