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.
solution:
Math, get total area of two rectangle, minus overlap area.
public int computeArea(int A, int B, int C, int D, int E, int F, int G, int H) {
int blx = Math.max(A, E);
int bly = Math.max(B, F);
int rtx = Math.min(C, G);
int rty = Math.min(D, H);
int res = (C-A) * (D-B) + (G-E) * (H-F);
if(blx >= rtx || bly >= rty) return res;
return res - (rtx - blx) * (rty - bly);
}

本文介绍了一种计算二维平面上两个矩形重叠部分面积的方法,并提供了一个具体的Java实现示例。通过数学计算得到两个矩形总面积,然后减去它们之间的重叠面积。
354

被折叠的 条评论
为什么被折叠?



