Max Sum of Rectangle No Larger Than K

127 篇文章 0 订阅

Max Sum of Rectangle No Larger Than K

Given a non-empty 2D matrix matrix and an integer k, find the max sum of a rectangle in the matrix such that its sum is no larger than k.

Example:

Given matrix = [
  [1,  0, 1],
  [0, -2, 3]
]
k = 2

The answer is 2. Because the sum of rectangle [[0, 1], [-2, 3]] is 2 and 2 is the max number no larger than k (k = 2).

Note:

  1. The rectangle inside the matrix must have an area > 0.
  2. What if the number of rows is much larger than the number of columns?
解析:

使用累加求和来求每个子矩阵的和。


代码:

class Solution {
public:
    int maxSumSubmatrix(vector<vector<int>>& matrix, int k) {
        
        int rows=matrix.size();
        int cols=matrix[0].size();
        vector<vector<int>> Sum(rows+1,vector<int>(cols+1,0));
        int ans=INT_MIN;
        for (int i=1; i<=rows; i++)
        {
            for (int j=1; j<=cols; j++)
            {
                Sum[i][j]=Sum[i-1][j]+Sum[i][j-1]-Sum[i-1][j-1]+matrix[i-1][j-1];
                
                
                for (int r=0; r<i; r++)
                {
                    for (int c=0; c<j; c++)
                    {
                        int temp=Sum[i][j]-Sum[r][j]-Sum[i][c]+Sum[r][c];
                        if (temp<=k&&temp>ans)
                        ans=temp;
                    }
                }
            }
        }
        return ans;
        
    }
};



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Sure, I can help you with that! Here is a possible implementation of the Rectangle class in Python: ```python class Rectangle: def __init__(self, x1, y1, x2, y2, x3, y3, x4, y4): self.set_coordinates(x1, y1, x2, y2, x3, y3, x4, y4) def set_coordinates(self, x1, y1, x2, y2, x3, y3, x4, y4): # Verify that all coordinates are in the first quadrant if x1 < 0 or y1 < 0 or x2 < 0 or y2 < 0 or x3 < 0 or y3 < 0 or x4 < 0 or y4 < 0: raise ValueError("All coordinates must be in the first quadrant") # Verify that no coordinate is larger than 20.0 if x1 > 20.0 or y1 > 20.0 or x2 > 20.0 or y2 > 20.0 or x3 > 20.0 or y3 > 20.0 or x4 > 20.0 or y4 > 20.0: raise ValueError("No coordinate can be larger than 20.0") # Verify that the coordinates specify a rectangle if not self.is_rectangle(x1, y1, x2, y2, x3, y3, x4, y4): raise ValueError("The coordinates do not specify a rectangle") # Store the coordinates as a list of tuples self.coordinates = [(x1, y1), (x2, y2), (x3, y3), (x4, y4)] def is_rectangle(self, x1, y1, x2, y2, x3, y3, x4, y4): # Check if the four sides have equal length and opposite sides are parallel return self.distance(x1, y1, x2, y2) == self.distance(x3, y3, x4, y4) and \ self.distance(x2, y2, x3, y3) == self.distance(x4, y4, x1, y1) and \ abs((y2 - y1) * (y4 - y3) + (x2 - x1) * (x4 - x3)) < 1e-10 def distance(self, x1, y1, x2, y2): # Calculate the distance between two points return ((x2 - x1) ** 2 + (y2 - y1) ** 2) ** 0.5 def length(self): # Calculate the length of the rectangle (longer dimension) return max(self.distance(self.coordinates[0][0], self.coordinates[0][1], self.coordinates[1][0], self.coordinates[1][1]), self.distance(self.coordinates[1][0], self.coordinates[1][1], self.coordinates[2][0], self.coordinates[2][1])) def width(self): # Calculate the width of the rectangle (shorter dimension) return min(self.distance(self.coordinates[0][0], self.coordinates[0][1], self.coordinates[1][0], self.coordinates[1][1]), self.distance(self.coordinates[1][0], self.coordinates[1][1], self.coordinates[2][0], self.coordinates[2][1])) def area(self): # Calculate the area of the rectangle return self.length() * self.width() def perimeter(self): # Calculate the perimeter of the rectangle return 2 * self.length() + 2 * self.width() def is_square(self): # Check if the rectangle is a square (equal length and width) return abs(self.length() - self.width()) < 1e-10 ``` Here is an example of how to use this class: ```python # Create a rectangle with coordinates (0, 0), (0, 5), (10, 5), (10, 0) rect = Rectangle(0, 0, 0, 5, 10, 5, 10, 0) # Print the length, width, area, perimeter, and whether it's a square print(rect.length()) # Output: 10.0 print(rect.width()) # Output: 5.0 print(rect.area()) # Output: 50.0 print(rect.perimeter()) # Output: 30.0 print(rect.is_square()) # Output: False ```

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值