Time limit : 2sec / Memory limit : 256MB
Score: 400 points
We have an H×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 si,j. If square (i,j) is initially painted by white, si,j is ‘.’; if square (i,j) is initially painted by black, si,j is ‘#’.
•H is an integer between 2 and 50 (inclusive). •W is an integer between 2 and 50 (inclusive). •si,j is ‘.’ or ‘#’ (1≤i≤H,1≤j≤W). •s1,1 and sH,W are ‘.’.
Print the maximum possible score that Snuke can achieve, or print −1 if the game cannot be completed.
Sample Input 1
3 3 ..# #.. ...
2
The score 2 can be achieved by changing the color of squares as follows:
Explanation of Sample 1
10 37 ..................................... ...#...####...####..###...###...###.. ..#.#..#...#.##....#...#.#...#.#...#. ..#.#..#...#.#.....#...#.#...#.#...#. .#...#.#..##.#.....#...#.#.###.#.###. .#####.####..#.....#...#..##....##... .#...#.#...#.#.....#...#.#...#.#...#. .#...#.#...#.##....#...#.#...#.#...#. .#...#.####...####..###...###...###.. .....................................
209
题意: 给你个包含.#的地图,.代表白色方块,#代表黑色方块,在保证可以从左上角走到右下角情况下,求最多可以把多少白块变成黑块
分析:我们直接先枚举下黑块的数量,然后再减去最短路,即可,这里的最短路可以用DFS,或者是BFS都行,我用的BFS。
