返回介绍

solution / 0500-0599 / 0554.Brick Wall / README_EN

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

554. Brick Wall

中文文档

Description

There is a rectangular brick wall in front of you with n rows of bricks. The ith row has some number of bricks each of the same height (i.e., one unit) but they can be of different widths. The total width of each row is the same.

Draw a vertical line from the top to the bottom and cross the least bricks. If your line goes through the edge of a brick, then the brick is not considered as crossed. You cannot draw a line just along one of the two vertical edges of the wall, in which case the line will obviously cross no bricks.

Given the 2D array wall that contains the information about the wall, return _the minimum number of crossed bricks after drawing such a vertical line_.

 

Example 1:

Input: wall = [[1,2,2,1],[3,1,2],[1,3,2],[2,4],[3,1,2],[1,3,1,1]]
Output: 2

Example 2:

Input: wall = [[1],[1],[1]]
Output: 3

 

Constraints:

  • n == wall.length
  • 1 <= n <= 104
  • 1 <= wall[i].length <= 104
  • 1 <= sum(wall[i].length) <= 2 * 104
  • sum(wall[i]) is the same for each row i.
  • 1 <= wall[i][j] <= 231 - 1

Solutions

Solution 1

class Solution:
  def leastBricks(self, wall: List[List[int]]) -> int:
    cnt = defaultdict(int)
    for row in wall:
      width = 0
      for brick in row[:-1]:
        width += brick
        cnt[width] += 1
    if not cnt:
      return len(wall)
    return len(wall) - cnt[max(cnt, key=cnt.get)]
class Solution {
  public int leastBricks(List<List<Integer>> wall) {
    Map<Integer, Integer> cnt = new HashMap<>();
    for (List<Integer> row : wall) {
      int width = 0;
      for (int i = 0, n = row.size() - 1; i < n; i++) {
        width += row.get(i);
        cnt.merge(width, 1, Integer::sum);
      }
    }
    int max = cnt.values().stream().max(Comparator.naturalOrder()).orElse(0);
    return wall.size() - max;
  }
}
func leastBricks(wall [][]int) int {
  cnt := make(map[int]int)
  for _, row := range wall {
    width := 0
    for _, brick := range row[:len(row)-1] {
      width += brick
      cnt[width]++
    }
  }
  max := 0
  for _, v := range cnt {
    if v > max {
      max = v
    }
  }
  return len(wall) - max
}
/**
 * @param {number[][]} wall
 * @return {number}
 */
var leastBricks = function (wall) {
  const cnt = new Map();
  for (const row of wall) {
    let width = 0;
    for (let i = 0, n = row.length - 1; i < n; ++i) {
      width += row[i];
      cnt.set(width, (cnt.get(width) || 0) + 1);
    }
  }
  let max = 0;
  for (const v of cnt.values()) {
    max = Math.max(max, v);
  }
  return wall.length - max;
};

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

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

发布评论

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