Dynamic Programming: Knapsack - Partition to K Equal Sum Subsets
Given a DP bitmask table where
dp[mask] = 0 indicates the subset represented by mask can be partitioned into subsets summing to target, and dp[(1 << n) - 1] = 0 is True, which of the following input arrays and k values could produce this result?