文章目录
- 1. 题目
- 2. 解题
1. 题目
给你 n 个二维平面上的点 points ,其中 points[i] = [xi, yi]
,请你返回两点之间内部不包含任何点的 最宽垂直面积 的宽度。
垂直面积 的定义是固定宽度,而 y 轴上无限延伸的一块区域(也就是高度为无穷大)。 最宽垂直面积 为宽度最大的一个垂直面积。
请注意,垂直区域 边上 的点 不在 区域内。
示例 1:
输入:points = [[8,7],[9,9],[7,4],[9,7]]
输出:1
解释:红色区域和蓝色区域都是最优区域。示例 2:
输入:points = [[3,1],[9,0],[1,0],[1,4],[5,3],[8,8]]
输出:3提示:
n == points.length
2 <= n <= 10^5
points[i].length == 2
0 <= xi, yi <= 10^9
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/widest-vertical-area-between-two-points-containing-no-points
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
2. 解题
- 记录 x 坐标,对 x 坐标排序,求最大间隔
class Solution {
public:int maxWidthOfVerticalArea(vector<vector<int>>& points) {vector<int> arr;for(auto &p : points)arr.push_back(p[0]);sort(arr.begin(), arr.end());int maxw = 0;for(int i = 1; i < arr.size(); i++){maxw = max(maxw, arr[i]-arr[i-1]);}return maxw;}
};
600 ms 67.4 MB
我的CSDN博客地址 https://michael.blog.csdn.net/
长按或扫码关注我的公众号(Michael阿明),一起加油、一起学习进步!