Welcome to Subscribe On Youtube

807. Max Increase to Keep City Skyline

Description

There is a city composed of n x n blocks, where each block contains a single building shaped like a vertical square prism. You are given a 0-indexed n x n integer matrix grid where grid[r][c] represents the height of the building located in the block at row r and column c.

A city's skyline is the outer contour formed by all the building when viewing the side of the city from a distance. The skyline from each cardinal direction north, east, south, and west may be different.

We are allowed to increase the height of any number of buildings by any amount (the amount can be different per building). The height of a 0-height building can also be increased. However, increasing the height of a building should not affect the city's skyline from any cardinal direction.

Return the maximum total sum that the height of the buildings can be increased by without changing the city's skyline from any cardinal direction.

 

Example 1:

Input: grid = [[3,0,8,4],[2,4,5,7],[9,2,6,3],[0,3,1,0]]
Output: 35
Explanation: The building heights are shown in the center of the above image.
The skylines when viewed from each cardinal direction are drawn in red.
The grid after increasing the height of buildings without affecting skylines is:
gridNew = [ [8, 4, 8, 7],
            [7, 4, 7, 7],
            [9, 4, 8, 7],
            [3, 3, 3, 3] ]

Example 2:

Input: grid = [[0,0,0],[0,0,0],[0,0,0]]
Output: 0
Explanation: Increasing the height of any building will result in the skyline changing.

 

Constraints:

  • n == grid.length
  • n == grid[r].length
  • 2 <= n <= 50
  • 0 <= grid[r][c] <= 100

Solutions

  • class Solution {
        public int maxIncreaseKeepingSkyline(int[][] grid) {
            int m = grid.length, n = grid[0].length;
            int[] rmx = new int[m];
            int[] cmx = new int[n];
            for (int i = 0; i < m; ++i) {
                for (int j = 0; j < n; ++j) {
                    rmx[i] = Math.max(rmx[i], grid[i][j]);
                    cmx[j] = Math.max(cmx[j], grid[i][j]);
                }
            }
            int ans = 0;
            for (int i = 0; i < m; ++i) {
                for (int j = 0; j < n; ++j) {
                    ans += Math.min(rmx[i], cmx[j]) - grid[i][j];
                }
            }
            return ans;
        }
    }
    
  • class Solution {
    public:
        int maxIncreaseKeepingSkyline(vector<vector<int>>& grid) {
            int m = grid.size(), n = grid[0].size();
            vector<int> rmx(m, 0);
            vector<int> cmx(n, 0);
            for (int i = 0; i < m; ++i) {
                for (int j = 0; j < n; ++j) {
                    rmx[i] = max(rmx[i], grid[i][j]);
                    cmx[j] = max(cmx[j], grid[i][j]);
                }
            }
            int ans = 0;
            for (int i = 0; i < m; ++i)
                for (int j = 0; j < n; ++j)
                    ans += min(rmx[i], cmx[j]) - grid[i][j];
            return ans;
        }
    };
    
  • class Solution:
        def maxIncreaseKeepingSkyline(self, grid: List[List[int]]) -> int:
            rmx = [max(row) for row in grid]
            cmx = [max(col) for col in zip(*grid)]
            return sum(
                (min(rmx[i], cmx[j]) - grid[i][j])
                for i in range(len(grid))
                for j in range(len(grid[0]))
            )
    
    
  • func maxIncreaseKeepingSkyline(grid [][]int) int {
    	m, n := len(grid), len(grid[0])
    	rmx := make([]int, m)
    	cmx := make([]int, n)
    	for i := 0; i < m; i++ {
    		for j := 0; j < n; j++ {
    			rmx[i] = max(rmx[i], grid[i][j])
    			cmx[j] = max(cmx[j], grid[i][j])
    		}
    	}
    	ans := 0
    	for i := 0; i < m; i++ {
    		for j := 0; j < n; j++ {
    			ans += min(rmx[i], cmx[j]) - grid[i][j]
    		}
    	}
    	return ans
    }
    
  • function maxIncreaseKeepingSkyline(grid: number[][]): number {
        let rows = grid.map(arr => Math.max(...arr)),
            cols = [];
        let m = grid.length,
            n = grid[0].length;
        for (let j = 0; j < n; ++j) {
            cols[j] = grid[0][j];
            for (let i = 1; i < m; ++i) {
                cols[j] = Math.max(cols[j], grid[i][j]);
            }
        }
    
        let ans = 0;
        for (let i = 0; i < m; ++i) {
            for (let j = 0; j < n; ++j) {
                ans += Math.min(rows[i], cols[j]) - grid[i][j];
            }
        }
        return ans;
    }
    
    

All Problems

All Solutions