DWITE '11 R5 #4 - Cube World

View as PDF

Submit solution

Points: 12
Time limit: 1.0s
Memory limit: 64M

Problem type
DWITE Online Computer Programming Contest, February 2011, Problem 5

Cube world is a magical place where the land is made up of cubes stacked on top of each other to form towers. You can think of this world as an N by M field, where each of the N \times M regions is a rectangular prism of some height. The following picture is one possible cube world (it is also the picture of the first sample input):

One day, it starts to rain heavily on cube world. Being the world's leading computer scientist, you want to determine the maximum volume of water that can amass in the cavities of cube world:

The input file will contain 5 test cases. The first line consists of two numbers N and M (1 \le N, M \le 20) representing the number of rows and columns of cube world. The next N lines each contain M integers, representing the height of each region of cube world. The world is not higher than 50 units (and no negative heights).

The output should contain 5 lines, where each line represents the maximum volume of water that can be stored in each cube world.

Cite: the question idea, and pictures, are from Stage 3 of the 6th Polish Olympiad of Informatics.

Sample Input

3 6
3 3 4 4 4 2
3 1 3 2 1 4
7 3 1 6 4 1

Sample Output

5

Problem Resource: DWITE

Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported

Comments

There are no comments at the moment.