请描述您的问题
标题:2017腾讯云11.11大促 给你实实在在的优惠
地址:https://cloud.tencent.com/act/double11
浏览器信息
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/604.3.5 (KHTML, like Gecko) Version/11.0.1 Safari/604.3.5
我得到了一组N个2D坐标。配对所有可能的2-组合
坐标,然后我们可以形成N* (N - 1) /2个平行于
这两个轴的两个点是相邻的顶点。现在我需要找到
这些矩形的面积之和,其中暴力强制(即迭代
通过所有组合)提供TLE。到目前为止,我最好的尝试是:
For example, if N = 5, then for all coordinates (xi, yi) where 0 <= i < N:
the sum of rectangle areas would be
(x0 - x1) * (y0 - y1) +
(x0 - x2) * (y0 - y2) +