CF919C.Seat Arrangements

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Suppose that you are in a campus and have to go for classes day by day. As you may see, when you hurry to a classroom, you surprisingly find that many seats there are already occupied. Today you and your friends went for class, and found out that some of the seats were occupied.

The classroom contains nn rows of seats and there are mm seats in each row. Then the classroom can be represented as an n×mn×m matrix. The character '.' represents an empty seat, while '*' means that the seat is occupied. You need to find kk consecutive empty seats in the same row or column and arrange those seats for you and your friends. Your task is to find the number of ways to arrange the seats. Two ways are considered different if sets of places that students occupy differs.

输入格式

The first line contains three positive integers n,m,kn,m,k ( 1<=n,m,k<=20001<=n,m,k<=2000 ), where n,mn,m represent the sizes of the classroom and kk is the number of consecutive seats you need to find.

Each of the next nn lines contains mm characters '.' or '*'. They form a matrix representing the classroom, '.' denotes an empty seat, and '*' denotes an occupied seat.

输出格式

A single number, denoting the number of ways to find kk empty seats in the same row or column.

输入输出样例

  • 输入#1

    2 3 2
    **.
    ...
    

    输出#1

    3
    
  • 输入#2

    1 2 2
    ..
    

    输出#2

    1
    
  • 输入#3

    3 3 4
    .*.
    *.*
    .*.
    

    输出#3

    0
    

说明/提示

In the first sample, there are three ways to arrange those seats. You can take the following seats for your arrangement.

  • (1,3)(1,3) , (2,3)(2,3)
  • (2,2)(2,2) , (2,3)(2,3)
  • (2,1)(2,1) , (2,2)(2,2)
首页