zoukankan      html  css  js  c++  java
  • [LeetCode] Max Points on a Line

    This problem has a naive idea, which is to traverse all possible pairs of two points and see how many other points fall in the line determined by them. This idea is of O(n^3) time complexity and will meet TLE.

    Well, let's focus on lines instead of pairs of points. Could we just find out how many points fall in all possible lines? The answer is yes. Remember that a line is determined by its slope and intercept. In fact, if two lines with the same slope share a common point, then they are just the same line. So to determine a line, we need its slope and a point.

    Now comes the idea to solve this problem. We start from a specific point p, and compute all the slopes of the lines between p and the remaining points. Then those with the same slopes will be the same line. We can find out the maximum number of points fall on a line containing p. We exhaust all possible p's and record the largest number we have seen. This number is just answer.

    Well, there are still two special cases to handle:

    1. Duplicate points: a pair of duplicate points give no determined line, so we just count the number of duplicates and add them to the result.
    2. Vertical lines: the slope of these lines is infinity mathematically. We simply set it to beINT_MAX in the following code.

    Now we have the following code, using an unordered_map<float, int> slopes to record how many points fall in the line of a specific slope and containing points[i]. Since all the operations of unordered_map is O(1), this code is of O(n^2) complexity.

     1 class Solution {
     2 public:
     3     int maxPoints(vector<Point>& points) {
     4         unordered_map<float, int> slopes;
     5         int maxp = 0, n = points.size();
     6         for (int i = 0; i < n; i++) {
     7             slopes.clear();
     8             int duplicate = 1;
     9             for (int j = i + 1; j < n; j++) {
    10                 if (points[j].x == points[i].x && points[j].y == points[i].y) {
    11                     duplicate++;
    12                     continue;
    13                 }
    14                 float slope = (points[j].x == points[i].x) ? INT_MAX : 
    15                               (float)(points[j].y - points[i].y) / (points[j].x - points[i].x);
    16                 slopes[slope]++;
    17             }
    18             maxp = max(maxp, duplicate);
    19             for (auto slope : slopes)
    20                 if (slope.second + duplicate > maxp) 
    21                     maxp = slope.second + duplicate; 
    22         }
    23         return maxp;
    24     }
    25 };

    Well, since the representation of floating point numbers is sometimes inaccurate, we may use a more safer way to represent the slope (dy / dx), which is to record dx and dy in a pair<int, int>. However, once we use pair<int, int> for the key of the map, we cannot use anunordered_map since pair<int, int> is unhashable. We now change to map and the time complexity becomes O(n^2logn). Also, since dy = 4, dx = 2 and dy = 8, dx = 4 represents the same slope, we need to divide both of them by their gcd first.

    The code is as follows. The logic is the same of the one above, just introducing pair and gcd.

     1 class Solution { 
     2 public: 
     3     int maxPoints(vector<Point>& points) {
     4         map<pair<int, int>, int> slopes;
     5         int maxp = 0, n = points.size();
     6         for (int i = 0; i < n; i++) {
     7             slopes.clear();
     8             int duplicate = 1;
     9             for (int j = i + 1; j < n; j++) {
    10                 if (points[j].x == points[i].x && points[j].y == points[i].y) {
    11                     duplicate++;
    12                     continue;
    13                 }
    14                 int dx = points[j].x - points[i].x;
    15                 int dy = points[j].y - points[i].y;
    16                 int dvs = gcd(dx, dy);
    17                 slopes[make_pair(dx / dvs, dy / dvs)]++;
    18             }
    19             maxp = max(maxp, duplicate); 
    20             for (auto slope : slopes)
    21                 if (slope.second + duplicate > maxp)
    22                     maxp = slope.second + duplicate;
    23         } 
    24         return maxp;
    25     }
    26 private:
    27     int gcd(int num1, int num2) {
    28         while (num2) {
    29             int temp = num2; 
    30             num2 = num1 % num2;
    31             num1 = temp;
    32         }
    33         return num1;
    34     }
    35 };
  • 相关阅读:
    java 类加载机制总结
    栈和队列的java简单实现
    java内存模型个人理解总结
    Day12-微信小程序实战-交友小程序-搭建服务器与上传文件到后端并控制云开发数据库-项目总结与github代码发布流程(附上项目全部完整代码学习使用)
    Day12-微信小程序实战-交友小程序-优化“附近的人”页面与serach组件的布局和样式以及搜索历史记录和本地缓存*内附代码)
    CSS-好玩的样式(用高斯模糊制作平缓突起)
    Day18-PHP-入门2
    Day18-PHP-入门1
    Day17-JS-jQuery
    Day17-JS进阶-线程机制和事件机制
  • 原文地址:https://www.cnblogs.com/jcliBlogger/p/4639358.html
Copyright © 2011-2022 走看看