#abc159e. [abc159_e]Dividing Chocolate

[abc159_e]Dividing Chocolate

Problem Statement

We have a chocolate bar partitioned into HH horizontal rows and WW vertical columns of squares.

The square (i,j)(i, j) at the ii-th row from the top and the jj-th column from the left is dark if Si,jS_{i,j} is 0, and white if Si,jS_{i,j} is 1.

We will cut the bar some number of times to divide it into some number of blocks. In each cut, we cut the whole bar by a line running along some boundaries of squares from end to end of the bar.

How many times do we need to cut the bar so that every block after the cuts has KK or less white squares?

Constraints

  • 1leqHleq101 \\leq H \\leq 10
  • 1leqWleq10001 \\leq W \\leq 1000
  • 1leqKleqHtimesW1 \\leq K \\leq H \\times W
  • Si,jS_{i,j} is 0 or 1.

Input

Input is given from Standard Input in the following format:

HH WW KK S1,1S1,2...S1,WS_{1,1}S_{1,2}...S_{1,W} :: SH,1SH,2...SH,WS_{H,1}S_{H,2}...S_{H,W}

Output

Print the number of minimum times the bar needs to be cut so that every block after the cuts has KK or less white squares.


Sample Input 1

3 5 4
11100
10001
00111

Sample Output 1

2

For example, cutting between the 11-st and 22-nd rows and between the 33-rd and 44-th columns - as shown in the figure to the left - works.

Note that we cannot cut the bar in the ways shown in the two figures to the right.

Figure


Sample Input 2

3 5 8
11100
10001
00111

Sample Output 2

0

No cut is needed.


Sample Input 3

4 10 4
1110010010
1000101110
0011101001
1101000111

Sample Output 3

3