311010: CF1920F1. Smooth Sailing (Easy Version)

Memory Limit:1024 MB Time Limit:5 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

F1. Smooth Sailing (Easy Version)time limit per test5 secondsmemory limit per test1024 megabytesinputstandard inputoutputstandard output

The only difference between the two versions of this problem is the constraint on $q$. You can make hacks only if both versions of the problem are solved.

Thomas is sailing around an island surrounded by the ocean. The ocean and island can be represented by a grid with $n$ rows and $m$ columns. The rows are numbered from $1$ to $n$ from top to bottom, and the columns are numbered from $1$ to $m$ from left to right. The position of a cell at row $r$ and column $c$ can be represented as $(r, c)$. Below is an example of a valid grid.

Example of a valid grid

There are three types of cells: island, ocean and underwater volcano. Cells representing the island are marked with a '#', cells representing the ocean are marked with a '.', and cells representing an underwater volcano are marked with a 'v'. It is guaranteed that there is at least one island cell and at least one underwater volcano cell. It is also guaranteed that the set of all island cells forms a single connected component$^{\dagger}$ and the set of all ocean cells and underwater volcano cells forms a single connected component. Additionally, it is guaranteed that there are no island cells at the edge of the grid (that is, at row $1$, at row $n$, at column $1$, and at column $m$).

Define a round trip starting from cell $(x, y)$ as a path Thomas takes which satisfies the following conditions:

  • The path starts and ends at $(x, y)$.
  • If Thomas is at cell $(i, j)$, he can go to cells $(i+1, j)$, $(i-1, j)$, $(i, j-1)$, and $(i, j+1)$ as long as the destination cell is an ocean cell or an underwater volcano cell and is still inside the grid. Note that it is allowed for Thomas to visit the same cell multiple times in the same round trip.
  • The path must go around the island and fully encircle it. Some path $p$ fully encircles the island if it is impossible to go from an island cell to a cell on the grid border by only traveling to adjacent on a side or diagonal cells without visiting a cell on path $p$. In the image below, the path starting from $(2, 2)$, going to $(1, 3)$, and going back to $(2, 2)$ the other way does not fully encircle the island and is not considered a round trip.
Example of a path that does not fully encircle the island

The safety of a round trip is the minimum Manhattan distance$^{\ddagger}$ from a cell on the round trip to an underwater volcano (note that the presence of island cells does not impact this distance).

You have $q$ queries. A query can be represented as $(x, y)$ and for every query, you want to find the maximum safety of a round trip starting from $(x, y)$. It is guaranteed that $(x, y)$ is an ocean cell or an underwater volcano cell.

$^{\dagger}$A set of cells forms a single connected component if from any cell of this set it is possible to reach any other cell of this set by moving only through the cells of this set, each time going to a cell with a common side.

$^{\ddagger}$Manhattan distance between cells $(r_1, c_1)$ and $(r_2, c_2)$ is equal to $|r_1 - r_2| + |c_1 - c_2|$.

Input

The first line contains three integers $n$, $m$, and $q$ ($3 \leq n, m \leq 10^5$, $9 \leq n \cdot m \leq 3 \cdot 10^5$, $1 \leq q \leq 5$) — the number of rows and columns of the grid and the number of queries.

Each of the following $n$ lines contains $m$ characters describing the cells of the grid. The character '#' denotes an island cell, '.' denotes an ocean cell, and 'v' denotes an underwater volcano cell.

It is guaranteed that there is at least one island cell and at least one underwater volcano cell. It is guaranteed that the set of all island cells forms a single connected component and the set of all ocean cells and underwater volcano cells forms a single connected component. Also, it is guaranteed that there are no island cells at the edge of the grid (that is, at the row $1$, at the row $n$, at the column $1$, and at the column $m$).

The following $q$ lines describe the queries. Each of these lines contains two integers $x$ and $y$ ($1 \leq x \leq n$, $1 \leq y \leq m$) denoting a round trip starting from $(x, y)$.

It is guaranteed that $(x, y)$ is an ocean cell or an underwater volcano cell.

Output

For each query, output a single integer — the maximum safety of a round trip starting from the specified position.

ExamplesInput
9 9 3
.........
.........
....###..
...v#....
..###....
...##...v
...##....
.........
v........
1 1
9 1
5 7
Output
3
0
3
Input
3 3 5
..v
.#.
...
1 2
1 3
2 3
2 1
3 2
Output
0
0
0
0
0
Input
14 13 5
.............
.............
.............
...vvvvvvv...
...v.....v...
...v.###.v...
...v.#.#.v...
...v..v..v...
...v..v..v...
....v...v....
.....vvv.....
.............
.............
.............
1 1
7 7
5 6
4 10
13 6
Output
3
0
1
0
2
Input
10 11 4
...........
..#######..
..#..#..#..
..#.....#..
..#..v..#..
..#.###.#..
..#.#.#.#..
..#...#.#..
..#####.#..
...........
7 6
3 7
6 8
1 1
Output
1
2
3
4
Note

For the first example, the image below shows an optimal round trip starting from $(1, 1)$. The round trip has a safety of $3$ as the minimum Manhattan distance from a cell on the round trip to an underwater volcano is $3$.

Example of an optimal round trip

For the fourth example, remember that it is allowed for Thomas to visit the same cell multiple times in the same round trip. For example, doing so is necessary for the round trip starting from $(7, 6)$.

Output

题目大意:给定一个由海岛、海洋和水下火山组成的网格,其中海岛用"#"表示,海洋用"."表示,水下火山用"v"表示。要求从海洋或水下火山单元(x, y)出发,环绕海岛一周回到起点,求这条路径上离水下火山的最小曼哈顿距离的最大值。

输入数据格式:
- 第一行包含三个整数n、m和q(3 ≤ n, m ≤ 10^5,9 ≤ n*m ≤ 3*10^5,1 ≤ q ≤ 5),分别表示网格的行数、列数和查询次数。
- 接下来n行,每行包含m个字符,描述网格的每个单元。
- 接下来q行,每行包含两个整数x和y(1 ≤ x ≤ n,1 ≤ y ≤ m),表示每次查询的起点坐标。

输出数据格式:
- 对于每个查询,输出一个整数,表示从指定位置出发的最大安全环绕路径。

公式(使用latex格式):
- 曼哈顿距离公式:$$
d = |r_1 - r_2| + |c_1 - c_2|
$$
其中,(r1, c1)和(r2, c2)分别是网格中的两个单元坐标。题目大意:给定一个由海岛、海洋和水下火山组成的网格,其中海岛用"#"表示,海洋用"."表示,水下火山用"v"表示。要求从海洋或水下火山单元(x, y)出发,环绕海岛一周回到起点,求这条路径上离水下火山的最小曼哈顿距离的最大值。 输入数据格式: - 第一行包含三个整数n、m和q(3 ≤ n, m ≤ 10^5,9 ≤ n*m ≤ 3*10^5,1 ≤ q ≤ 5),分别表示网格的行数、列数和查询次数。 - 接下来n行,每行包含m个字符,描述网格的每个单元。 - 接下来q行,每行包含两个整数x和y(1 ≤ x ≤ n,1 ≤ y ≤ m),表示每次查询的起点坐标。 输出数据格式: - 对于每个查询,输出一个整数,表示从指定位置出发的最大安全环绕路径。 公式(使用latex格式): - 曼哈顿距离公式:$$ d = |r_1 - r_2| + |c_1 - c_2| $$ 其中,(r1, c1)和(r2, c2)分别是网格中的两个单元坐标。

加入题单

上一题 下一题 算法标签: