-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaximum_points_on_line.py
60 lines (42 loc) · 1.34 KB
/
maximum_points_on_line.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
"""
Given an array of points where points[i] = [x_i, y_i]
represents a point on the X-Y plane, return the maximum
number of points that lie on the same straight line.
Examples:
Input: points = [[1,1],[2,2],[3,3]]
Output: 3
Input: points = [[1,1],[3,2],[5,3],[4,1],[2,3],[1,4]]
Output: 4
"""
from collections import defaultdict
from math import gcd
def max_points_on_line(points: list[list[int]]) -> int:
max_points = 1
n = len(points)
if n < 3:
return n
for i, (x1, y1) in enumerate(points):
slope_count = defaultdict(int)
duplicates = local_max = 0
for j in range(i + 1, n):
x2, y2 = points[j]
dx, dy = x2 - x1, y2 - y1
if dx == dy == 0:
duplicates += 1
continue
if (g := gcd(dx, dy)) != 0:
dx //= g
dy //= g
if dx < 0:
dx, dy = -dx, -dy
if dx == 0:
dy = 1
slope_count[dy, dx] += 1
local_max = max(local_max, slope_count[dy, dx])
max_points = max(max_points, local_max + duplicates + 1)
return max_points
if __name__ == "__main__":
array = [[1, 1], [2, 2], [3, 3]]
print(max_points_on_line(array))
array = [[1, 1], [3, 2], [5, 3], [4, 1], [2, 3], [1, 4]]
print(max_points_on_line(array))