Hi, I'm dealing with the following problem.
You are given a matrix of size M x N with positive coefficients. The goal is to choose P columns such that maximal sum of all elements in each row of the resulting M x P matrix is minimized. For example, if M = 3, N = 5, P = 2 and matrix is given by
a11 a12 a13 a14 a15
a21 a22 a23 a24 a25
a31 a32 a33`a34 a35
and the optimal solution is to choose `columns 2 and 4, the resulting matrix is given by
a12 a14
a22 a24
a32 a34
and the value max{a12 + a14, a22 + a24, a32 + a34} is minimal among all choices of P columns.
Since there are (N over P) solutions, one can implement an easy exponential algorithm to solve this problem, but is there any faster, polynomial-time solution to this?
Or, if there is not, can anyone surely prove this is an NP-hard problem? Do you know any similar NP-hard problem that might be reduced to this one?