시간 제한메모리 제한제출정답맞힌 사람정답 비율
6 초 1024 MB26201881.818%

문제

A nearby meadow consists of quadratic fields organized in n rows and m columns. The rows are denoted with numbers from 1 to n from top to bottom, and the columns with numbers from 1 to m from left to right. Some fields are grass fields (denoted with “1”), whereas some are underwater because of the heavy spring rainfall (denoted with “0”). Two grass fields are connected if it is possible to get from one field to another using a series of moves where, in each step, we move to the adjacent grass field located up, down, left or right. A component is a set of mutually connected grass fields that is maximal in the sense that, if A is a field in the component K, then all the adjacent grass fields of A are also in the component K.

For a given meadow P and indices a and b (1 ≤ a ≤ b ≤ n), Pba is a meadow consisting of rows between the a th and the b th row of the original meadow P (including both a th and b th row). The complexity of meadow Pba is the number of components of the grass fields located on the meadow. Determine the sum of the complexities of all possible meadows Pba.

입력

The first line of input contains the positive integers n and m — dimensions of the meadow. Each of the following n lines contains a string of exactly m characters that denotes one row of the meadow. Each character of the string is either the digit “0” or the digit “1”.

출력

You must output the required sum of all complexities.

서브태스크

번호배점제한
19

n ≤ 100, m ≤ 50

217

n ≤ 1 000, m ≤ 50

335

n ≤ 100 000, m ≤ 15

439

n ≤ 100 000, m ≤ 50

예제 입력 1

4 4
1101
1111
1010
1011

예제 출력 1

14

예제 입력 2

5 7
0100010
0111110
0101001
1111011
0100100

예제 출력 2

33

예제 입력 3

4 12
011111010111
110000101001
110111101111
111101111111

예제 출력 3

28

힌트

Explanation of the first sample: If we denote the complexity of meadow Pba with |Pba| then it holds that |P11| = 2, |P21| = 1, |P31| = 1, |P41| = 1, |P22| = 1, |P32| = 1, |P42| = 1, |P33| = 2, |P43| = 2, |P44| = 2, and the sum of these numbers is 14.

채점 및 기타 정보

  • 예제는 채점하지 않는다.