Strah
의견: 0
1 \(s / 256\) \(MB / 110\) points
Everyone is afraid of something. Someone is afraid of darkness, someone is afraid of heights,
someone is afraid of Vinnie Jones (all of us are afraid of Vinnie Jones), someone is afraid of singing
before eating something...
There are many fears, but the greatest among all for Mirko is choosing a land for planting
strawberries. Mirko's land can be described as a matrix with \(N\) rows and \(M\) columns. Some of the
fields in the matrix are suitable for planting strawberries and some are not – weeds grow there. Mirko
is looking for rectangular parts of the land that are completely filled with fields suitable for strawberry
planting. Those kind of rectangles are called suitable rectangles. Also, Mirko is interested in the
potential value of all fields in the matrix. The potential value of each field in the matrix is defined as
the number of suitable rectangles that contain that field.
Since Mirko has troubles facing his fears, he asks you to only calculate the sum of all the fields'
potential values.
In test cases worth 20% of the total points, it will hold that 1 ≤ \(N\) , \(M\) ≤ 10.
In test cases worth additional 30% of the total points, it will hold that 1 ≤ \(N\) , \(M\) ≤ 300.
The first line contains two positive integers \(N\) and \(M\) (1 ≤ \(N\) , \(M\) ≤ 2 000), dimensions of the land.
The next \(N\) lines contains \(M\) characters each, representing the landscape. Each character can be
either a ‘.’ (dot) which represents a field suitable for planting or a ‘#’ which represents weeds.
Output the sum of all potential values of the matrix’s fields.
2 3
.#.
..#
3 3
...
...
...
3 4
..#.
#...
...#output
output
8
100
40Clarification of the first sample test:
The following matrix describes the potential values of the land’s fields. The sum of all potential values is 8.
평가 및 의견
Strah
Log in to rate problems.
아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.
풀이 제출
Strah