Problem Description
You are given a 2D integer array stockPrices where stockPrices[i] = [day_i, price_i] indicates the price of the stock on day day_i is price_i. A line chart is created from the array by plotting the points on an XY plane with the X-axis representing the day and the Y-axis representing the price and connecting adjacent points. Return the minimum number of lines needed to represent the line chart.
Key Insights
- The line connecting two points is determined by their slopes.
- If three consecutive points are collinear, they can be represented by a single line.
- The number of lines increases whenever the slope between two consecutive points changes.
Space and Time Complexity
Time Complexity: O(n log n) - due to sorting the points based on the day. Space Complexity: O(1) - only a few variables are used for calculations.
Solution
To solve the problem, we will first sort the stockPrices based on the day. Then, we will iterate through the sorted list and calculate the slope between consecutive points. If the slope changes, we increment our line count. The slope between two points (x1, y1) and (x2, y2) can be calculated using the formula (y2 - y1) / (x2 - x1). We must be cautious with integer division to avoid precision issues.