Rectangle Area

Posted julie_yang

tags:

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

class Solution {
public:
    int computeArea(int A, int B, int C, int D, int E, int F, int G, int H) {
    long total =  max((C-A),0) * max((D-B),0) +  max((G-E),0) * max((H-F),0) ;
    long comm;
    if(min(G,C) < max(E,A) || min(H,D) < max(F,B) )    //防止越界
        comm = 0;
    else
        comm  =  max(0,min(G,C)-max(E,A))  *  max(0,min(H,D)-max(F,B)) ;
   
    return total-comm;    
    }
    
};

  原题在此处  https://leetcode.com/problems/rectangle-area/

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

LeetCode 939. Minimum Area Rectangle

LeetCode 963. Minimum Area Rectangle II

LeetCode-Rectangle Area

LeetCode Rectangle Area

223. Rectangle Area

leetcode 223: Rectangle Area