C - Nuske vs Phantom Thnook 解説 /

実行時間制限: 4 sec / メモリ制限: 256 MB

配点 : 700

問題文

ぬすけ君は、N × M のグリッドを持っています。行には上から順に 1 から N、列には左から順に 1 から M の番号がついています。 グリッドの各マスは白か青かに塗られており、S_{i,j}1 のとき ij 列のマスは青マス、0 のとき白マスです。 青く塗られた任意の二つのマス a,b について、a からはじめて、現在いるマスから辺を共有する青いマスに進むことを繰り返して b に至るような経路のうち、同じマスを 2 度以上通らないようなものは、高々 1 通りです。

ぬすけ君の永遠のライバルである怪盗スヌークは、ぬすけ君に Q 個の質問をしました。i 個目の質問は、4 つの整数 x_{i,1},y_{i,1},x_{i,2},y_{i,2} からなり、 グリッドの x_{i,1} 行目から x_{i,2} 行目まで、y_{i,1} 列目から y_{i,2} 列目までの範囲の長方形領域を切り出したときに、 その範囲の青マスからなる連結成分がいくつあるかを答える質問です。

怪盗スヌークの質問すべてに答えてください。

制約

  • 1 ≦ N,M ≦ 2000
  • 1 ≦ Q ≦ 200000
  • S_{i,j}0 または 1 である
  • S_{i,j} は問題文中の条件を満たす
  • 1 ≦ x_{i,1} ≦ x_{i,2} ≦ N(1 ≦ i ≦ Q)
  • 1 ≦ y_{i,1} ≦ y_{i,2} ≦ M(1 ≦ i ≦ Q)

入力

入力は以下の形式で標準入力から与えられる。

N M Q
S_{1,1}..S_{1,M}
:
S_{N,1}..S_{N,M}
x_{1,1} y_{i,1} x_{i,2} y_{i,2}
:
x_{Q,1} y_{Q,1} x_{Q,2} y_{Q,2}

出力

質問ごとに、その範囲の青マスからなる連結成分がいくつあるかを出力せよ。


入力例 1

3 4 4
1101
0110
1101
1 1 3 4
1 1 3 1
2 2 3 4
1 2 2 4

出力例 1

3
2
2
2

1 つ目の質問では、グリッド全体が指定されます。青マスからなる連結成分は 3 つあるので、3 を出力します。

2 つめの質問では、赤枠の範囲が指定されます。青マスからなる連結成分は 2 つあるので、2 を出力します。 もとのグリッドで同じ成分に属するマスが、異なる成分に属するかもしれないことに注意してください。


入力例 2

5 5 6
11010
01110
10101
11101
01010
1 1 5 5
1 2 4 5
2 3 3 4
3 3 3 3
3 1 3 5
1 1 3 4

出力例 2

3
2
1
1
3
2

Score : 700 points

Problem Statement

Nuske has a grid with N rows and M columns of squares. The rows are numbered 1 through N from top to bottom, and the columns are numbered 1 through M from left to right. Each square in the grid is painted in either blue or white. If S_{i,j} is 1, the square at the i-th row and j-th column is blue; if S_{i,j} is 0, the square is white. For every pair of two blue square a and b, there is at most one path that starts from a, repeatedly proceeds to an adjacent (side by side) blue square and finally reaches b, without traversing the same square more than once.

Phantom Thnook, Nuske's eternal rival, gives Q queries to Nuske. The i-th query consists of four integers x_{i,1}, y_{i,1}, x_{i,2} and y_{i,2} and asks him the following: when the rectangular region of the grid bounded by (and including) the x_{i,1}-th row, x_{i,2}-th row, y_{i,1}-th column and y_{i,2}-th column is cut out, how many connected components consisting of blue squares there are in the region?

Process all the queries.

Constraints

  • 1 ≤ N,M ≤ 2000
  • 1 ≤ Q ≤ 200000
  • S_{i,j} is either 0 or 1.
  • S_{i,j} satisfies the condition explained in the statement.
  • 1 ≤ x_{i,1} ≤ x_{i,2} ≤ N(1 ≤ i ≤ Q)
  • 1 ≤ y_{i,1} ≤ y_{i,2} ≤ M(1 ≤ i ≤ Q)

Input

The input is given from Standard Input in the following format:

N M Q
S_{1,1}..S_{1,M}
:
S_{N,1}..S_{N,M}
x_{1,1} y_{i,1} x_{i,2} y_{i,2}
:
x_{Q,1} y_{Q,1} x_{Q,2} y_{Q,2}

Output

For each query, print the number of the connected components consisting of blue squares in the region.


Sample Input 1

3 4 4
1101
0110
1101
1 1 3 4
1 1 3 1
2 2 3 4
1 2 2 4

Sample Output 1

3
2
2
2

In the first query, the whole grid is specified. There are three components consisting of blue squares, and thus 3 should be printed.

In the second query, the region within the red frame is specified. There are two components consisting of blue squares, and thus 2 should be printed. Note that squares that belong to the same component in the original grid may belong to different components.


Sample Input 2

5 5 6
11010
01110
10101
11101
01010
1 1 5 5
1 2 4 5
2 3 3 4
3 3 3 3
3 1 3 5
1 1 3 4

Sample Output 2

3
2
1
1
3
2