#Lutece0269. Not To The Max
Not To The Max
Migrated from Lutece 269 Not To The Max
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
/* ----------------------------------------------------------------------------------
Given a two-dimensional array of positive and negative integers, a sub-rectangle is any contiguous sub-array of size or greater located within the whole array. The sum of a rectangle is the sum of all the elements in that rectangle. In this problem the sub-rectangle with the largest sum is referred to as the maximal sub-rectangle.
As an example, the maximal sub-rectangle of the array:
0 -2 -7 0
9 2 -6 2
-4 1 -4 1
-1 8 0 -2
is in the lower left corner:
9 2
-4 1
-1 8
and has a sum of .
---------------------------------------------------------------------------------- */
Your task here has something similar with the problem mentioned above, while you are to find out a non-empty sub-matrix whose elements sum closest to the given integer .
Input
The input contains several test cases.
Each test case begins with three integers , which means there are rows and columns in the matrix and our target as mentioned above. Then lines follows, each of which consists of non-negative integers bounded in .
You can assume that
and means the end of the input, which should not be processed.
Output
For each test case, you are to output a line in the from of Case #:
, #
is the test case number indexed from , and then another line with the sum of the sub-matrix you found, if there is a tie, you should output the smaller one.
Samples
3 3 0
1 1 1
1 1 1
1 1 1
3 3 0
1 1 1
1 1 1
1 1 0
3 3 10
2 2 4
5 2 0
0 0 0
Case 1:
1
Case 2:
0
Case 3:
11
Resources
厦门大学第四届程序设计竞赛 现场决赛