CF372B.Counting Rectangles is Fun

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There is an n×mn×m rectangular grid, each cell of the grid contains a single integer: zero or one. Let's call the cell on the ii -th row and the jj -th column as (i,j)(i,j) .

Let's define a "rectangle" as four integers a,b,c,da,b,c,d (1<=a<=c<=n; 1<=b<=d<=m)(1<=a<=c<=n; 1<=b<=d<=m) . Rectangle denotes a set of cells of the grid (x,y) : a<=x<=c,b<=y<=d{(x,y) : a<=x<=c,b<=y<=d} . Let's define a "good rectangle" as a rectangle that includes only the cells with zeros.

You should answer the following qq queries: calculate the number of good rectangles all of which cells are in the given rectangle.

输入格式

There are three integers in the first line: nn , mm and qq ( 1<=n,m<=40,1<=q<=31051<=n,m<=40,1<=q<=3·10^{5} ). Each of the next nn lines contains mm characters — the grid. Consider grid rows are numbered from top to bottom, and grid columns are numbered from left to right. Both columns and rows are numbered starting from 1.

Each of the next qq lines contains a query — four integers that describe the current rectangle, aa , bb , cc , dd (1<=a<=c<=n; 1<=b<=d<=m)(1<=a<=c<=n; 1<=b<=d<=m) .

输出格式

For each query output an answer — a single integer in a separate line.

输入输出样例

  • 输入#1

    5 5 5
    00101
    00000
    00001
    01000
    00001
    1 2 2 4
    4 5 4 5
    1 2 5 2
    2 2 4 5
    4 2 5 3
    

    输出#1

    10
    1
    7
    34
    5
    
  • 输入#2

    4 7 5
    0000100
    0000010
    0011000
    0000000
    1 7 2 7
    3 1 3 1
    2 3 4 5
    1 2 2 7
    2 2 4 7
    

    输出#2

    3
    1
    16
    27
    52
    

说明/提示

For the first example, there is a 5×55×5 rectangular grid, and the first, the second, and the third queries are represented in the following image.

- For the first query, there are 1010 good rectangles, five 1×11×1 , two 2×12×1 , two 1×21×2 , and one 1×31×3 .

  • For the second query, there is only one 1×11×1 good rectangle.
  • For the third query, there are 77 good rectangles, four 1×11×1 , two 2×12×1 , and one 3×13×1 .
首页