2479.Zbazi in Zeydabad

Time Limit: 1s Memory Limit: 256MB

A tourist wants to visit country Zeydabad for Zbazi (a local game in Zeydabad).

The country Zeydabad is a rectangular table consisting of n rows and m columns. Each cell on the country is either 'z' or '.'.

The tourist knows this country is named Zeydabad because there are lots of ''Z-pattern"s in the country. A ''Z-pattern" is a square which anti-diagonal is completely filled with 'z' and its upper and lower rows are also completely filled with 'z'. All other cells of a square can be arbitrary.

2479_1.png

Note that a ''Z-pattern" can consist of only one cell (see the examples).

So he wants to count the number of ''Z-pattern"s in the country (a necessary skill for Zbazi).

Now your task is to help tourist with counting number of ''Z-pattern"s.

As input/output can reach huge size it is recommended to use fast input/output methods: for example, prefer to use gets/scanf/printf instead of getline/cin/cout in C++, prefer to use BufferedReader/PrintWriter instead of Scanner/System.out in Java.

Input Format(From the terminal/stdin)

The first line contains two integers n,m (1 \le n,m \le 3000) - the number of rows and columns respectively.

Each of the next n lines contains m characters 'z' or '.' - the description of Zeydabad.

Output Format(To the terminal/stdout)

Print the only integer a - the number of ''Z-pattern"s in Zeydabad.

Sample Input 1

Copy
4 4
zzzz
zzz.
.z..
zzzz
 · \n
    \n
    \n
    \n
    \n

Sample Output 1

Copy
16
  \n

Sample Input 2

Copy
1 4
z.z.
 · \n
    \n

Sample Output 2

Copy
2
 \n

Sample Input 3

Copy
2 2
zz
zz
 · \n
  \n
  \n

Sample Output 3

Copy
5
 \n

Submit

请先 登录

© 2025 FAQs