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 };
  • 相关阅读:
    使用Visual Studio 2012 开发 Html5 应用
    模块化与MVC
    跨站脚本攻击(Cross‐Site Scripting (XSS))
    C#程序开发中经常遇到的10条实用的代码
    运用DebugDiag诊断ASP.Net异常
    前端MVVM框架avalon
    TOGAF架构开发方法(ADM)之需求管理阶段
    C#4.0中var和dynamic的区别
    hive 不同用户 权限设置 出错处理
    Delphi中类的运行期TypeInfo信息结构说明
  • 原文地址:https://www.cnblogs.com/jcliBlogger/p/4639358.html
Copyright © 2011-2022 走看看