CF364E.Empty Rectangles

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You've got an n×mn×m table ( nn rows and mm columns), each cell of the table contains a "0" or a "1".

Your task is to calculate the number of rectangles with the sides that are parallel to the sides of the table and go along the cell borders, such that the number one occurs exactly kk times in the rectangle.

输入格式

The first line contains three space-separated integers nn , mm and kk ( 1<=n,m<=25001<=n,m<=2500 , 0<=k<=60<=k<=6 ) — the sizes of the table and the required number of numbers one.

Next nn lines each contains mm characters "0" or "1". The ii -th character of the jj -th line corresponds to the character that is in the jj -th row and the ii -th column of the table.

输出格式

Print a single number — the number of rectangles that contain exactly kk numbers one.

Please, do not write the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specifier.

输入输出样例

  • 输入#1

    3 3 2
    101
    000
    101
    

    输出#1

    8
    
  • 输入#2

    5 5 1
    00000
    00000
    00100
    00000
    00000
    

    输出#2

    81
    
  • 输入#3

    5 5 6
    01010
    10101
    01010
    10101
    01010
    

    输出#3

    12
    
  • 输入#4

    3 3 0
    001
    010
    000
    

    输出#4

    15
    
  • 输入#5

    4 4 0
    0000
    0101
    0000
    0000
    

    输出#5

    52
    
首页