CF433D.Nanami's Digital Board

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 nn pixels in height and mm pixels in width, every pixel is either light or dark. The pixels are described by its coordinate. The jj -th pixel of the ii -th line is pixel (i,j)(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)(i,j) belongs to a side of sub-rectangle with (x1,y1)(x_{1},y_{1}) and (x2,y2)(x_{2},y_{2}) as its upper-left and lower-right vertex if and only if it satisfies the logical condition:

(( i=x1i=x_{1} or i=x2i=x_{2} ) and ( y1<=j<=y2y_{1}<=j<=y_{2} )) or (( j=y1j=y_{1} or j=y2j=y_{2} ) and ( x1<=i<=x2x_{1}<=i<=x_{2} )).Nanami has all the history of changing pixels, also she has some questions of the described type, can you answer them?

输入格式

The first line contains three space-separated integers nn , mm and q (1<=n,m,q<=1000)q (1<=n,m,q<=1000) — the height and width of the digital board, and the number of operations.

Then follow nn lines, each line containing mm space-separated integers. The jj -th integer of the ii -th line is ai,ja_{i,j} — the initial state of pixel (i,j)(i,j) .

  • If ai,j=0a_{i,j}=0 , pixel (i,j)(i,j) is initially dark.
  • If ai,j=1a_{i,j}=1 , pixel (i,j)(i,j) is initially light.

Then follow qq lines, each line containing three space-separated integers opop , xx , and y (1<=op<=2; 1<=x<=n; 1<=y<=m)y (1<=op<=2; 1<=x<=n; 1<=y<=m) , describing an operation.

  • If op=1op=1 , the pixel at (x,y)(x,y) changes its state (from light to dark or from dark to light).
  • If op=2op=2 , Nanami queries the biggest light block with pixel (x,y)(x,y) on its side.

输出格式

For each query, print a single line containing one integer — the answer to Nanami's query.

输入输出样例

  • 输入#1

    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
    

    输出#1

    0
    2
    6
    
  • 输入#2

    3 3 4
    1 1 1
    1 1 1
    1 1 1
    2 2 2
    1 2 2
    2 1 1
    2 2 1
    

    输出#2

    6
    3
    3
    

说明/提示

Consider the first sample.

The first query specifies pixel (2,2)(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)(1,2) . The biggest light block is the block with (1,2)(1,2) as its upper-left vertex and (1,3)(1,3) as its lower-right vertex.

The last query specifies pixel (2,2)(2,2) , which became light in the third operation. The biggest light block is the block with (1,2)(1,2) as its upper-left vertex and (3,3)(3,3) as its lower-right vertex.

首页