I have some problems to solve a two dimensional 01 programming problem. The problem has a similar body as follows,
${\text{min}}_{\{x_{ij}\}} \sum_i \sum_j x_{ij} c_{ij}$
s.t. $\sum_i x_{ij} \leq 1$
$\sum_j x_{ij} \leq 1$
$x_{ij} \in \{0,1\}$
The range of $i$ and $j$ are large. I think for one dimensional variable $x_i\in\{0,1\}$, the problem can be solved by bisection method or Dinkelbach method. While as the problem has constraints in two dimension $i$ and $j$, I am not sure if these methods can still be effective. Moreover, since the variable matrix $X=\{x_{ij},\forall i,j\}$ is a sparse matrix, I wonder if there are some matrix related methods that can solve this problem. I'd like to ask about mathematic methods rather than computing tools such as CPLEX.
Thanks a lot if you guys can give me some advices!