leetcode 223 Rectangle Area

Posted liuqiujie

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 223 Rectangle Area相关的知识,希望对你有一定的参考价值。

https://leetcode.com/problems/rectangle-area/discuss/705462/C-36-ms-100-O(1)-15.4-mb-100-O(1)

class Solution {
public:
    int computeArea(int A, int B, int C, int D, int E, int F, int G, int H) {
        long area1=(C-A)*(D-B),area2=(G-E)*(H-F);
        if(C<=E||A>=G||B>=H||F>=D) {cout<<"1";return area1+area2;}
        int w=min(C,G)-max(A,E),h=min(D,H)-max(B,F);
        return area1+area2-w*h;
    }
};

 

以上是关于leetcode 223 Rectangle Area的主要内容,如果未能解决你的问题,请参考以下文章

leetcode 223 Rectangle Area

Leetcode 223 Rectangle Area

LeetCode223. Rectangle Area 解题小结

leetcode 223. Rectangle Area 计算面积---------- java

Leetcode_223_Rectangle Area

LeetCode 223 Rectangle Area(矩形面积)