시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 512 MB44161537.500%

문제

JOI-kun’s room is rectangular shaped. It is a grid of N × M blocks. There are N horizontal rows. Each row is parallel to the east-west direction. There are M vertical columns. Each column is parallel to the south-north direction. The block in the i-th row from the north and the j-th column from the west (1 ≤ i ≤ N, 1 ≤ j ≤ M) is denoted by the block (i, j). Pieces of furniture are located in some of the blocks. For i, j (1 ≤ i ≤ N, 1 ≤ j ≤ M), if Ci,j = 1, there is a piece of furniture in the block (i, j). If Ci,j = 0, there is no furniture in the block (i, j).

We say the arrangement of furniture is nice if we can travel from the block (1, 1) to the block (N, M) without passing through blocks with furniture by repeating travels from one block to another block which is in the south or the east direction. It is guaranteed that the initial arrangement of furniture is nice.

JOI-kun will perform Q operations. The k-th operation (1 ≤ k ≤ Q) will be performed in the following way.

  • If the arrangement of furniture remains nice if a new piece of furniture is located in the block (Xk, Yk), then he locates a new piece of furniture in the block (Xk, Yk). Otherwise, he performs nothing.

Note that he will not perform an operation to a block where a piece of furniture is located initially, or where he already performed an operation. There is no furniture in the block (1, 1) and the block (N, M), and he will not perform an operation in these blocks. Write a program which, given the size of the room, the initial arrangement of furniture, and the blocks where he will perform the operations, determines whether a piece of furniture is located or not for each operation.

입력

Read the following data from the standard input. All the values in the input are integers.

N M C1,1 C1,2 · · · C1,M C2,1 C2,2 · · · C2,M . . . CN,1 CN,2 · · · CN,M Q X1 Y1 X2 Y2 . . . XQ YQ

출력

Write Q lines to the standard output. The k-th line (1 ≤ k ≤ Q) should contain 1 if JOI-kun locates a new piece of furniture in the block (Xk, Yk) in the k-th operation. Otherwise, it should contain 0.

제한

  • 1 ≤ N ≤ 1 000.
  • 1 ≤ M ≤ 1 000.
  • 0 ≤ Ci,j ≤ 1 (1 ≤ i ≤ N, 1 ≤ j ≤ M).
  • C1,1 = 0.
  • CN,M = 0.
  • The initial arrangement of furniture is nice.
  • 1 ≤ Q ≤ N × M.
  • 1 ≤ Xk ≤ N (1 ≤ k ≤ Q).
  • 1 ≤ Yk ≤ M (1 ≤ k ≤ Q).
  • (Xk, Yk) ≠ (1, 1) (1 ≤ k ≤ Q).
  • (Xk, Yk) ≠ (N, M) (1 ≤ k ≤ Q).
  • CXk,Yk ≠ 1 (1 ≤ k ≤ Q).
  • (Xk, Yk) ≠ (Xl, Yl) (1 ≤ k < l ≤ Q).

서브태스크

번호배점제한
15

N ≤ 100, M ≤ 100.

295

No additional constraints.

예제 입력 1

2 3
0 0 1
0 0 0
3
2 2
2 1
1 2

예제 출력 1

0
1
0

The first operation is performed to the block (2, 2). If a new piece of furniture is located at the block (2, 2), then the arrangement will not remain nice. Therefore, JOI-kun does not actually locate a piece of furniture at the block (2, 2). The output should be 0.

The second operation is performed to the block (2, 1). If a new piece of furniture is located at the block (2, 1), we can travel the blocks (1, 1), (1, 2), (2, 2), (2, 3) in this order, for example, and the arrangement will remain nice. Therefore, JOI-kun locates a new piece of furniture at the block (2, 1). The output should be 1.

The third operation is performed to the block (1, 2). Since a piece of furniture is already located at the block (2, 1), the arrangement will not remain nice if a new piece of furniture is located at the block (1, 2). Therefore, the output should be 0.

예제 입력 2

2 5
0 0 0 0 0
0 0 0 1 0
2
1 2
2 2

예제 출력 2

0
1

The first operation is performed to the block (1, 2). If a new piece of furniture is located at the block (1, 2), then the arrangement will not remain nice. Therefore, JOI-kun does not actually locate a piece of furniture, and the output should be 0. Note that if we travel the blocks (1, 1), (2, 1), (2, 2), (2, 3), (1, 3), (1, 4), (1, 5), (2, 5) in this order, then we do not pass through blocks with furniture. However, since the travel from the block (2, 3) to the block (1, 3) is toward the north direction, it does not satisfy the condition of nice arrangements.

The second operation is performed to the block (2, 2). If a new piece of furniture is located at the block (2, 2), then the arrangement will remain nice since we can travel the blocks (1, 1), (1, 2), (1, 3), (1, 4), (1, 5), (2, 5) in this order. Therefore, JOI-kun locates a new piece of furniture at the block (2, 2), and the output should be 1.

채점 및 기타 정보

  • 예제는 채점하지 않는다.