Leetcode 3195. Find the Minimum Area to Cover All Ones I

  • [Leetcode 3195. Find the Minimum Area to Cover All Ones I](#Leetcode 3195. Find the Minimum Area to Cover All Ones I)
    • [1. 解题思路](#1. 解题思路)
    • [2. 代码实现](#2. 代码实现)

1. 解题思路

这一题还是挺简单的,只要找到所有1所在的元素的上下左右4个边界,作为目标矩形的四个边即可。

2. 代码实现

给出python代码实现如下:

python 复制代码
class Solution:
    def minimumArea(self, grid: List[List[int]]) -> int:
        n, m = len(grid), len(grid[0])
        lb, rb = m, -1
        ub, db = n, -1
        for i in range(n):
            for j in range(m):
                if grid[i][j] == 1:
                    lb = min(lb, j)
                    rb = max(rb, j)
                    ub = min(ub, i)
                    db = max(db, i)
        return (rb-lb+1) * (db-ub+1)

提交代码评测得到:耗时2844ms,占用内存46.2MB。

相关推荐
小孟Java攻城狮4 小时前
leetcode-不同路径问题
算法·leetcode·职场和发展
萌の鱼14 小时前
leetcode 221. 最大正方形
数据结构·c++·算法·leetcode
MiyamiKK5717 小时前
leetcode_字符串 459. 重复的子字符串
算法·leetcode·职场和发展
字节高级特工18 小时前
【优选算法】4----盛最多水的容器
c++·算法·leetcode
不玩return的马可乐20 小时前
蓝桥杯 单词重排
开发语言·数据结构·c++·算法·leetcode·职场和发展·蓝桥杯
DogDaoDao20 小时前
leetcode 面试经典 150 题:插入区间
c++·算法·leetcode·面试·贪心算法·vector·插入区间
夏末秋也凉1 天前
力扣-数组-283 移动零
算法·leetcode
苏苏大大1 天前
【leetcode 23】54. 替换数字(第八期模拟笔试)
java·算法·leetcode
Bai_Yin1 天前
Leetcode 189 轮转数组
java·数据结构·算法·leetcode
の梦1 天前
力扣203题(3)
算法·leetcode·职场和发展·蓝桥杯