Problem Description
You are given an array points representing integer coordinates of some points on a 2D-plane, where points[i] = [xi, yi]. The cost of connecting two points [xi, yi] and [xj, yj] is the manhattan distance between them: |xi - xj| + |yi - yj|. Return the minimum cost to make all points connected. All points are connected if there is exactly one simple path between any two points.
Key Insights
- The problem can be modeled as a Minimum Spanning Tree (MST) problem.
- The Manhattan distance is used to calculate the cost between points.
- Kruskal’s or Prim’s algorithm can be employed to find the MST efficiently.
- Using a Union-Find data structure helps manage connected components.
Space and Time Complexity
Time Complexity: O(E log E) where E is the number of edges, which is O(n^2) in the worst case. Space Complexity: O(n) for storing the Union-Find structure.
Solution
The solution involves creating a graph where each point is a node and the edges are the Manhattan distances between every pair of points. We can use Kruskal’s algorithm to build the Minimum Spanning Tree. This involves sorting all edges based on their weights (distances) and using a Union-Find data structure to avoid cycles while connecting the points. The total cost will be the sum of the weights of the edges included in the MST.