#ABC298G. [ABC298G] Strawberry War

[ABC298G] Strawberry War

Score : 600600 points

Problem Statement

We have a rectangular cake. It is partitioned into HH rows and WW columns of sections, and the section at the ii-th row from the top and jj-th column from the left has si,js_{i,j} strawberries on it.

You will make TT cuts to divide the cake into T+1T+1 pieces. Each cut will be done in one of the following two manners.

  • Choose an existing piece with two or more rows of sections. Additionally, choose two adjacent rows from that piece, and cut the piece along the boundary between them to divide it into two smaller pieces.
  • Choose an existing piece with two or more columns of sections. Additionally, choose two adjacent columns from that piece, and cut the piece along the boundary between them to divide it into two smaller pieces.

You want to distribute the strawberries onto the resulting pieces as evenly as possible. Let x1,x2,,xT+1x_1,x_2,\ldots,x_{T+1} be the numbers of strawberries on the resulting T+1T+1 pieces, and MM and mm be the maximum and minimum among those numbers, respectively. Find the minimum possible value of MmM-m.

Constraints

  • 1H,W61 \leq H,W \leq 6
  • 1THW11 \leq T \leq HW-1
  • 0si,j10160 \leq s_{i,j} \leq 10^{16}
  • All values in the input are integers.

Input

The input is given from Standard Input in the following format:

HH WW TT

s1,1s_{1,1} \ldots s1,Ws_{1,W}

\vdots

sH,1s_{H,1} \ldots sH,Ws_{H,W}

Output

Print the answer.

2 3 4
2 3 4
4 1 3
2

The figure below shows a way to cut the cake so that the top-left, bottom-left, middle, top-right, and bottom-right pieces have 22, 44, 44, 44, and 33 strawberries on them, respectively. Here, the difference between the maximum and minimum number of strawberries is 42=24-2=2. It is impossible to achieve a smaller difference, so the answer is 22.

2 2 3
0 0
0 0
0