Algorithm
Problem Name: 807. Max Increase to Keep City Skyline
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 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
Code Examples
#1 Code Example with C++ Programming
Code -
C++ Programming
class Solution {
public:
int maxIncreaseKeepingSkyline(vector<vector<int>>& grid) {
int m = grid.size(), n = grid[0].size();
vector<int>rowMax(m);
vector<int>colMax(n);
// Store the maximum value of each row and column
for(int i = 0; i < m; i++)
for(int j = 0; j < n; j++){
rowMax[i] = max(rowMax[i], grid[i][j]);
colMax[j] = max(colMax[j], grid[i][j]);
}
// Sum up the difference
int sum = 0;
for(int i = 0; i < m; i++)
for(int j = 0; j < n; j++)
sum += min(rowMax[i], colMax[j]) - grid[i][j];
return sum;
}
};
Copy The Code &
Try With Live Editor
Input
Output
#2 Code Example with Java Programming
Code -
Java Programming
class Solution {
public int maxIncreaseKeepingSkyline(int[][] grid) {
int numRows = grid.length;
int numCols = grid[0].length;
int[] rowMax = new int[numRows];
int[] colMax = new int[numCols];
for (int i = 0; i < numRows; i++) {
for (int j = 0; j < numCols; j++) {
rowMax[i] = Math.max(rowMax[i], grid[i][j]);
colMax[j] = Math.max(colMax[j], grid[i][j]);
}
}
int totalIncrease = 0;
for (int i = 0; i < numRows; i++) {
for (int j = 0; j < numCols; j++) {
totalIncrease += Math.min(rowMax[i], colMax[j]) - grid[i][j];
}
}
return totalIncrease;
}
}
Copy The Code &
Try With Live Editor
Input
Output
#3 Code Example with Python Programming
Code -
Python Programming
class Solution:
def maxIncreaseKeepingSkyline(self, grid):
"""
:type grid: List[List[int]]
:rtype: int
"""
n=len(grid)
m=len(grid[0])
mx_i = [max(grid[i]) for i in range(n)]
mx_j=[-float("inf")]*m
for i in range(n):
for j in range(m): mx_j[j]=max(mx_j[j],grid[i][j])
res=0
for i in range(n):
for j in range(m):
prev=grid[i][j]
grid[i][j]=min(mx_i[i],mx_j[j])
res+=grid[i][j]-prev
return res
Copy The Code &
Try With Live Editor
Input
#4 Code Example with Python Programming
Code -
Python Programming
using System;
namespace LeetCode
{
public class _0807_MaxIncreaseToKeepCitySkyline
{
public int MaxIncreaseKeepingSkyline(int[][] grid)
{
var N = grid.Length;
var skylineRows = new int[N];
var skylineCols = new int[N];
for (int i = 0; i < N; i++)
for (int j = 0; j < N; j++)
{
skylineRows[i] = Math.Max(skylineRows[i], grid[i][j]);
skylineCols[j] = Math.Max(skylineCols[j], grid[i][j]);
}
var result = 0;
for (int i = 0; i < N; i++)
for (int j = 0; j < N; j++)
result += Math.Min(skylineRows[i], skylineCols[j]) - grid[i][j];
return result;
}
}
}
Copy The Code &
Try With Live Editor
Input