#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 1×11 \times 1 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 1515.

---------------------------------------------------------------------------------- */

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 TT.

Input

The input contains several test cases.

Each test case begins with three integers nn mm TT, which means there are nn rows and mm columns in the matrix and our target TT as mentioned above. Then nn lines follows, each of which consists of mm non-negative integers bounded in [0,10000][0, 10000].

You can assume that 0<n20,0<m2000,0T<2150 < n \leq 20, 0 < m \leq 2000, 0 \leq T < 2^{15}

n=0n = 0 and m=0m = 0 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 11, 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

厦门大学第四届程序设计竞赛 现场决赛