跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2022. Nanami's Digital Board

    ID: 2028 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 6 上传者: 标签>并查集模拟数据结构编程与模拟提高难度共享题库Codeforces英文题面题目来源题面语言

Nanami's Digital Board

题目描述

D. Nanami's Digital Board
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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.

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.


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1611 题。保留原作者与原赛事署名。