5631: Nanami的数字板

内存限制:256 MB 时间限制:2 S 标准输入输出
题目类型:传统 评测方式:文本比较 上传者:
提交:4 通过:4

题目描述


Nanami is an expert at playing games. This day, Nanami's good friend Hajime invited her to watch a game of baseball. Unwilling as she was, she followed him to the stadium. But Nanami had no interest in the game, so she looked around to see if there was something that might interest her. That's when she saw the digital board at one end of the stadium.
The digital board is n pixels in height and m pixels in width, every pixel is either light or dark. The pixels are described by its coordinate. The j-th pixel of the i-th line is pixel (i,j). The board displays messages by switching a combination of pixels to light, and the rest to dark. Nanami notices that the state of the pixels on the board changes from time to time. At certain times, certain pixels on the board may switch from light to dark, or from dark to light.
Nanami wonders, what is the area of the biggest light block such that a specific pixel is on its side. A light block is a sub-rectangle of the board, in which all pixels are light. Pixel (i,j) belongs to a side of sub-rectangle with (x1,y1) and (x2,y2) as its upper-left and lower-right vertex if and only if it satisfies the logical condition:
((i=x1 or i=x2) and (y1jy2)) or ((j=y1 or j=y2) and (x1ix2)). Nanami has all the history of changing pixels, also she has some questions of the described type, can you answer them?
Input
The first line contains three space-separated integers n, m and q(1≤n,m,q≤1000) − the height and width of the digital board, and the number of operations.
Then follow n lines, each line containing m space-separated integers. The j-th integer of the i-th line is ai,j − the initial state of pixel (i,j).
  • If ai,j=0, pixel (i,j) is initially dark.
  • If ai,j=1, pixel (i,j) is initially light.
Then follow q lines, each line containing three space-separated integers op, x, and y(1≤op≤2;1≤xn;1≤ym), describing an operation.
  • If op=1, the pixel at (x,y) changes its state (from light to dark or from dark to light).
  • If op=2, Nanami queries the biggest light block with pixel (x,y) on its side.
Output
For each query, print a single line containing one integer − the answer to Nanami's query.

七海千秋和日向创在玩游戏。抽象来说是这么一个问题:

一个 n * m的矩阵,每个元素都是 0/1,有 q个操作,每个操作形如 op,x,y,如果 op为 1 ,就将 (x,y)的 0/1值取反,如果 op为 2 ,就查询 (x,y)所在的全为 1 的矩阵中最大的面积(当然 (x,y) 本身也得是 1),其中 (x,y) 这个点是该矩阵四条边上的一个点。


Examples
Input
3 4 5
0 1 1 0
1 0 0 1
0 1 1 0
2 2 2
2 1 2
1 2 2
1 2 3
2 2 2
Output
0
2
6
Input
3 3 4
1 1 1
1 1 1
1 1 1
2 2 2
1 2 2
2 1 1
2 2 1
Output
6
3
3
Note
Consider the first sample.
The first query specifies pixel (2,2), which is dark itself, so there are no valid light blocks, thus the answer is 0.
The second query specifies pixel (1,2). The biggest light block is the block with (1,2) as its upper-left vertex and (1,3) as its lower-right vertex.
The last query specifies pixel (2,2), which became light in the third operation. The biggest light block is the block with (1,2) as its upper-left vertex and (3,3) as its lower-right vertex.

输入样例 复制


输出样例 复制