#D184. Spring Tiles
Spring Tiles
Spring Tiles
One morning when you woke up, it was in a springy labyrinth.
I don't know why I'm in such a strange place. You have the option of waiting for help here, but you know from experience that if you stay in a labyrinth like this for a long time, a gust of wind will surely blow you away. It was. However, the time until the gust blows cannot be judged. So you thought it was best to act to minimize the expected number of moves required to escape the labyrinth.
When I picked up an unidentified scroll that had fallen under my feet and read it as a trial, I happened to be able to perceive the entire map of the labyrinth. Furthermore, by drinking the grass that I happened to have, I was able to know the positions of all the traps. Apparently, there are no traps other than dangerous monsters and springs in this labyrinth.
This labyrinth is shaped like a rectangle with several types of tiles, for example:
.. ## g. #
- #. * #. # ...... #
- s # *. * #
".":floor. You can walk around freely on this.
"#":wall. You can't get inside the wall.
"S": Your first position. Below this tile is the floor.
"G": Stairs. If you ride on this tile, you have escaped from the labyrinth.
"*":Spring. If you ride on this tile, it will be randomly blown onto one of the floors (excluding stairs and spring tiles). The odds of being hit on each floor are all equal.
The type of tile is one of these five.
You can move one square at a time from the tile you are currently riding to an adjacent tile in either the up, down, left, or right direction. However, you cannot move to Naname.
Given a map of the labyrinth, find the expected number of moves required to escape the labyrinth if you take the best strategy. It is not included in the number of movements that is blown by the spring.
Input
W H c11 c12 ... c1w c21 c22 ... c2w ::: ch1 ch2 ... ccw
On the first line of input, the integer W (3 ≤ W ≤ 500) and the integer H (3 ≤ H ≤ 500) are written in this order, separated by blanks. The integer W represents the width of the labyrinth, and the integer H represents the height of the labyrinth.
The following H line contains W letters (not blank delimiters) that represent the map of the labyrinth. The format of this part is as in the example given above. Note that "s" and "g" appear exactly once in the data. In addition, one square around the labyrinth is always surrounded by a wall.
In addition, in the given labyrinth, no matter how you move and how it is blown by the spring, you will fall into a state where you cannot escape even if you can arbitrarily set the floor to be blown by the spring. You can assume that there is no such thing.
Output
Output the expected number of moves to escape when you take the best strategy. The output may contain errors, but the relative error to the true value must be less than 10-9.
Examples
Input
8 6 ######## #..##g.# ##.#.# #......# #s#.*# ########
Output
5.857142857143
Input
8 6
..##g.# #.#.# ......# s#.*#
Output
5.857142857143
Input
21 11
#.......## #...............## #.#.#.#.#.#.#.#.## .#.#.#.#.#.#.#.#.## ...................# .#.#.#.#.#.#.#.#.## s#.#.#.#.#.#.#.#.#g# ...................# ...................#
Output
20.000000000000
Input
9 8
...#.# ..#...# ...#.*#
.s....g# .#...#
Output
5.000000000000
inputFormat
Input
W H c11 c12 ... c1w c21 c22 ... c2w ::: ch1 ch2 ... ccw
On the first line of input, the integer W (3 ≤ W ≤ 500) and the integer H (3 ≤ H ≤ 500) are written in this order, separated by blanks. The integer W represents the width of the labyrinth, and the integer H represents the height of the labyrinth.
The following H line contains W letters (not blank delimiters) that represent the map of the labyrinth. The format of this part is as in the example given above. Note that "s" and "g" appear exactly once in the data. In addition, one square around the labyrinth is always surrounded by a wall.
In addition, in the given labyrinth, no matter how you move and how it is blown by the spring, you will fall into a state where you cannot escape even if you can arbitrarily set the floor to be blown by the spring. You can assume that there is no such thing.
outputFormat
Output
Output the expected number of moves to escape when you take the best strategy. The output may contain errors, but the relative error to the true value must be less than 10-9.
Examples
Input
8 6 ######## #..##g.# ##.#.# #......# #s#.*# ########
Output
5.857142857143
Input
8 6
..##g.# #.#.# ......# s#.*#
Output
5.857142857143
Input
21 11
#.......## #...............## #.#.#.#.#.#.#.#.## .#.#.#.#.#.#.#.#.## ...................# .#.#.#.#.#.#.#.#.## s#.#.#.#.#.#.#.#.#g# ...................# ...................#
Output
20.000000000000
Input
9 8
...#.# ..#...# ...#.*#
.s....g# .#...#
Output
5.000000000000
样例
8 6
########
#..##g.#
#*#.*#.#
#......#
#*s#*.*#
########
5.857142857143