返回介绍

solution / 0800-0899 / 0807.Max Increase to Keep City Skyline / README_EN

发布于 2024-06-17 01:03:34 字数 5422 浏览 0 评论 0 收藏 0

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

Solution 1

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]))
    )
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;
  }
};
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;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文