100883: [AtCoder]ABC088 D - Grid Repainting

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score: $400$ points

Problem statement

We have an $H \times W$ grid whose squares are painted black or white. The square at the $i$-th row from the top and the $j$-th column from the left is denoted as $(i, j)$.
Snuke would like to play the following game on this grid. At the beginning of the game, there is a character called Kenus at square $(1, 1)$. The player repeatedly moves Kenus up, down, left or right by one square. The game is completed when Kenus reaches square $(H, W)$ passing only white squares.
Before Snuke starts the game, he can change the color of some of the white squares to black. However, he cannot change the color of square $(1, 1)$ and $(H, W)$. Also, changes of color must all be carried out before the beginning of the game.
When the game is completed, Snuke's score will be the number of times he changed the color of a square before the beginning of the game. Find the maximum possible score that Snuke can achieve, or print $-1$ if the game cannot be completed, that is, Kenus can never reach square $(H, W)$ regardless of how Snuke changes the color of the squares.

The color of the squares are given to you as characters $s_{i, j}$. If square $(i, j)$ is initially painted by white, $s_{i, j}$ is .; if square $(i, j)$ is initially painted by black, $s_{i, j}$ is #.

Constraints

  • $H$ is an integer between $2$ and $50$ (inclusive).
  • $W$ is an integer between $2$ and $50$ (inclusive).
  • $s_{i, j}$ is . or # $(1 \leq i \leq H, 1 \leq j \leq W)$.
  • $s_{1, 1}$ and $s_{H, W}$ are ..

Input

Input is given from Standard Input in the following format:

$H$ $W$
$s_{1, 1}s_{1, 2}s_{1, 3} ... s_{1, W}$
$s_{2, 1}s_{2, 2}s_{2, 3} ... s_{2, W}$
 $:$   $:$
$s_{H, 1}s_{H, 2}s_{H, 3} ... s_{H, W}$

Output

Print the maximum possible score that Snuke can achieve, or print $-1$ if the game cannot be completed.


Sample Input 1

3 3
..#
#..
...

Sample Output 1

2

The score $2$ can be achieved by changing the color of squares as follows:

Explanation of Sample 1


Sample Input 2

10 37
.....................................
...#...####...####..###...###...###..
..#.#..#...#.##....#...#.#...#.#...#.
..#.#..#...#.#.....#...#.#...#.#...#.
.#...#.#..##.#.....#...#.#.###.#.###.
.#####.####..#.....#...#..##....##...
.#...#.#...#.#.....#...#.#...#.#...#.
.#...#.#...#.##....#...#.#...#.#...#.
.#...#.####...####..###...###...###..
.....................................

Sample Output 2

209

Input

题意翻译

在高 $H$ 宽 $W$ 的网格中有黑白方格,左上角坐标为 $ (1,1) $ ,你需要操控人物从左上角 $ (1,1) $ 走到右下角。 - 你只能上下左右移动,并且只能经过白方格。 - 你可以进行任意次操作:每次把任意一个白方格变成一个黑方格。 - 保证初始左上角和右下角为白方格。 问在能到达右下角的前提下最多能进行几次操作?若无解输出 $-1$。

加入题单

算法标签: