Bob
의견: 0
\(2^{nd}\) round, November \(8^{th}\), 2014
Little Bob is a famous builder. He bought land and wants to build a house. Unfortunately, the problem is the
land’s terrain, it has a variable elevation.
The land is shaped like a rectangle, N meters wide and M meters long. It can be divided into \(N \cdot M\) squares
(see the image). Bob’s house will be shaped like a rectangle that has sides parallel with the land’s edges and
its vertices coincide with the vertices of the squares. All the land covered by Bob’s house must be of equal
elevation to prevent it from collapsing.
2
2
2
2
2
1
1
1
1
2
1
2
1
2
1
The land divided into squares.
Two possible locations \(of\) house are marked with red and blue.
Calculate the number of ways Bob can build his house!
In test cases worth 20% of total points, it will hold N, M ⩽50.
In test cases worth 60% of total points, it will hold N, M ⩽500.
The first line of input contains integers N and M (1 ⩽N, M ⩽1 000).
Each of the following N lines contains M integers a_{ij} (1 ⩽a_{ij} ⩽\(10^{9}\)), respectively the height of each square of
land.
Warning: Please use faster input methods beacuse the amount of input is very large. (For example, use scanf
instead of cin in C++ or BufferedReader instead of Scanner in Java.)
The first and only line of output must contain the required number from the task statement.
5 3
2 2 2
2 2 1
1 1 1
2 1 2
1 2 1
4 3
1 1 1
1 1 1
2 2 2
2 2 2output
27
36Clarification of the first example: Some of the possible house locations are rectangles with opposite vertices in (0,0)-
(1,1), (0,0)-(0,2) (height 2) i (2,0)-(2,2), (1,2)-(2,2) (height 1). The first number in the brackets represents the row number
and the second one the column number (0-indexed).
평가 및 의견
Bob
Log in to rate problems.
아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.
풀이 제출
Bob