Problem Description
You are given an n x n grid where you have placed some 1 x 1 x 1 cubes. Each value v = grid[i][j] represents a tower of v cubes placed on top of cell (i, j). After placing these cubes, you have decided to glue any directly adjacent cubes to each other, forming several irregular 3D shapes. Return the total surface area of the resulting shapes. Note: The bottom face of each shape counts toward its surface area.
Key Insights
- Each cube has a total of 6 faces.
- The surface area contributed by each cube can be reduced by the area of faces that are glued to adjacent cubes.
- For each cell in the grid, the contribution to the surface area can be calculated based on the number of adjacent cubes in the four cardinal directions (up, down, left, right).
- The bottom face of each tower also contributes to the surface area.
Space and Time Complexity
Time Complexity: O(n^2) - We iterate through each cell in the n x n grid. Space Complexity: O(1) - We use a constant amount of space for calculations.
Solution
To calculate the total surface area, we will:
- Initialize a variable to keep track of the total surface area.
- Loop through each cell in the grid.
- For each cell, if it has a certain height (value greater than 0), calculate the contribution to the surface area considering the number of faces exposed.
- For each cube in the tower, add faces for the top, bottom, and sides that are not adjacent to other cubes.
- Return the total surface area after processing all cells.