欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 编程资源 > 编程问答 >内容正文

编程问答

Leetcode题目:Rectangle Area

发布时间:2025/5/22 编程问答 49 豆豆
生活随笔 收集整理的这篇文章主要介绍了 Leetcode题目:Rectangle Area 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

题目:

Find the total area covered by two rectilinear rectangles in a 2D plane.

Each rectangle is defined by its bottom left corner and top right corner as shown in the figure.

Assume that the total area is never beyond the maximum possible value of int.

题目解答:本题是要求出两个矩阵在二维空间中所占的面积。做法是,求出两个矩阵的面积,再减去他们的交集。

代码如下:

class Solution {
public:
    int computeArea(int A, int B, int C, int D, int E, int F, int G, int H) {
        if( (A > C) || (B > D) || (E > G) || (F > H) )
        {
            return 0;
        }
        int a = (C - A) * (D - B);
        int b = (G - E) * (H - F);
       
        int intersection = 0;
        int A_ = max(A,E);
        int B_ = max(B,F);
        int C_ = min(C,G);
        int D_ = min(D,H);
        if((A_ < C_) && (B_ < D_))
        {
            intersection = (C_ - A_) * (D_ - B_);
        }
        return a + b - intersection;
    }
};

转载于:https://www.cnblogs.com/CodingGirl121/p/5442598.html

总结

以上是生活随笔为你收集整理的Leetcode题目:Rectangle Area的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。