Minimum Cost to Connect Two Groups of Points

You are given two groups of points where the first group has size1 points, the second group has size2 points, and size1 >= size2.

The cost of the connection between any two points are given in an size1 x size2 matrix where cost[i][j] is the cost of connecting point i of the first group and point j of the second group. The groups are connected if each point in both groups is connected to one or more points in the opposite group. In other words, each point in the first group must be connected to at least one point in the second group, and each point in the second group must be connected to at least one point in the first group.

Return the minimum cost it takes to connect the two groups.

 

Example 1:

Input: cost = [[15, 96], [36, 2]]
Output: 17
Explanation: The optimal way of connecting the groups is:
1--A
2--B
This results in a total cost of 17.

Example 2:

Input: cost = [[1, 3, 5], [4, 1, 1], [1, 5, 3]]
Output: 4
Explanation: The optimal way of connecting the groups is:
1--A
2--B
2--C
3--A
This results in a total cost of 4.
Note that there are multiple points connected to point 2 in the first group and point A in the second group. This does not matter as there is no limit to the number of points that can be connected. We only care about the minimum total cost.

Example 3:

Input: cost = [[2, 5, 1], [3, 4, 7], [8, 1, 2], [6, 2, 4], [3, 8, 8]]
Output: 10

 

Constraints:


Solution:


Intuition


As usual, it pays to analyze at the problem constraints. Since we only have up to 12 points, we can track which ones are connected using a bit mask.


Solution


Staightforward top-down DP for the first group. At the same time, we track which elements from the second group were connected in mask.


After finishing with the first group, we detect elements in group 2 that are still disconnected, and connect them with the "cheapest" node in the first group.

class Solution {
    public int connectTwoGroups(List<List<Integer>> cost) {
        Integer[][] dp = new Integer[13][1 << 12];
        int size1 = cost.size(), size2 = cost.get(0).size();
        int[] minSize2 = new int[size2];
        Arrays.fill(minSize2, Integer.MAX_VALUE);
        for (int j = 0; j < size2; j ++) {
            for (int i = 0; i < size1; i ++) {
                minSize2[j] = Math.min(minSize2[j], cost.get(i).get(j));
            }
        }
        return dfs(cost, 0, 0, dp, minSize2);
    }
    
    private int dfs(List<List<Integer>> cost, int i, int mask, Integer[][] dp, int[] minSize2) {
        if (dp[i][mask] != null) return dp[i][mask];
        int res = i == cost.size() ? 0 : Integer.MAX_VALUE;
        if (i == cost.size()) {
            for (int j = 0; j < minSize2.length; j ++) {
                if ((mask & (1 << j)) == 0) {
                    res += minSize2[j];
                }
            }
        } else {
            for (int j = 0; j < minSize2.length; j ++) {
                res = Math.min(res, cost.get(i).get(j) + dfs(cost, i + 1, mask | (1 << j), dp, minSize2));
            }
        }
        return dp[i][mask] = res;        
    }
}