#P1592F2. Alice and Recoloring 2

    ID: 306 Type: RemoteJudge 2000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>constructive algorithmsflowsgraph matchingsgreedy*2800

Alice and Recoloring 2

No submission language available for this problem.

Description

The difference between the versions is in the costs of operations. Solution for one version won't work for another!

Alice has a grid of size n×mn \times m, initially all its cells are colored white. The cell on the intersection of ii-th row and jj-th column is denoted as (i,j)(i, j). Alice can do the following operations with this grid:

  • Choose any subrectangle containing cell (1,1)(1, 1), and flip the colors of all its cells. (Flipping means changing its color from white to black or from black to white).

    This operation costs 11 coin.

  • Choose any subrectangle containing cell (n,1)(n, 1), and flip the colors of all its cells.

    This operation costs 33 coins.

  • Choose any subrectangle containing cell (1,m)(1, m), and flip the colors of all its cells.

    This operation costs 44 coins.

  • Choose any subrectangle containing cell (n,m)(n, m), and flip the colors of all its cells.

    This operation costs 22 coins.

As a reminder, subrectangle is a set of all cells (x,y)(x, y) with x1xx2x_1 \le x \le x_2, y1yy2y_1 \le y \le y_2 for some 1x1x2n1 \le x_1 \le x_2 \le n, 1y1y2m1 \le y_1 \le y_2 \le m.

Alice wants to obtain her favorite coloring with these operations. What's the smallest number of coins that she would have to spend? It can be shown that it's always possible to transform the initial grid into any other.

The first line of the input contains 22 integers n,mn, m (1n,m5001 \le n, m \le 500) — the dimensions of the grid.

The ii-th of the next nn lines contains a string sis_i of length mm, consisting of letters W and B. The jj-th character of string sis_i is W if the cell (i,j)(i, j) is colored white in the favorite coloring of Alice, and B if it's colored black.

Output the smallest number of coins Alice would have to spend to achieve her favorite coloring.

Input

The first line of the input contains 22 integers n,mn, m (1n,m5001 \le n, m \le 500) — the dimensions of the grid.

The ii-th of the next nn lines contains a string sis_i of length mm, consisting of letters W and B. The jj-th character of string sis_i is W if the cell (i,j)(i, j) is colored white in the favorite coloring of Alice, and B if it's colored black.

Output

Output the smallest number of coins Alice would have to spend to achieve her favorite coloring.

Samples

Sample Input 1

3 3
WWW
WBB
WBB

Sample Output 1

2

Sample Input 2

10 15
WWWBBBWBBBBBWWW
BBBBWWWBBWWWBBB
BBBWWBWBBBWWWBB
BBWBWBBWWWBBWBW
BBBBWWWBBBWWWBB
BWBBWWBBBBBBWWW
WBWWBBBBWWBBBWW
WWBWWWWBBWWBWWW
BWBWWBWWWWWWBWB
BBBWBWBWBBBWWBW

Sample Output 2

68

Note

In the first sample, it's optimal to just apply the fourth operation once to the rectangle containing cells (2,2),(2,3),(3,2),(3,3)(2, 2), (2, 3), (3, 2), (3, 3). This would cost 22 coins.