Maze Master

AtCoder
IDabc151_d
Time2000ms
Memory256MB
Difficulty
Takahashi has a maze, which is a grid of $H \times W$ squares with $H$ horizontal rows and $W$ vertical columns. The square at the $i$\-th row from the top and the $j$\-th column is a "wall" square if $S_{ij}$ is `#`, and a "road" square if $S_{ij}$ is `.`. From a road square, you can move to a horizontally or vertically adjacent road square. You cannot move out of the maze, move to a wall square, or move diagonally. Takahashi will choose a starting square and a goal square, which can be any road squares, and give the maze to Aoki. Aoki will then travel from the starting square to the goal square, in the minimum number of moves required. In this situation, find the maximum possible number of moves Aoki has to make. ## Constraints * $1 \leq H,W \leq 20$ * $S_{ij}$ is `.` or `#`. * $S$ contains at least two occurrences of `.`. * Any road square can be reached from any road square in zero or more moves. ## Input Input is given from Standard Input in the following format: $H$ $W$ $S_{11}$$...$$S_{1W}$ $:$ $S_{H1}$$...$$S_{HW}$ [samples]
Samples
Input #1
3 3
...
...
...
Output #1
4

If Takahashi chooses the top-left square as the starting square and the bottom-right square as the goal square, Aoki has to make four moves.
Input #2
3 5
...#.
.#.#.
.#...
Output #2
10

If Takahashi chooses the bottom-left square as the starting square and the top-right square as the goal square, Aoki has to make ten moves.
API Response (JSON)
{
  "problem": {
    "name": "Maze Master",
    "description": {
      "content": "Takahashi has a maze, which is a grid of $H \\times W$ squares with $H$ horizontal rows and $W$ vertical columns. The square at the $i$\\-th row from the top and the $j$\\-th column is a \"wall\" square if",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc151_d"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "Takahashi has a maze, which is a grid of $H \\times W$ squares with $H$ horizontal rows and $W$ vertical columns.\nThe square at the $i$\\-th row from the top and the $j$\\-th column is a \"wall\" square if...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments