I have the following problem:
For the given natural $n$ find the maximum value of the target function $\sum_{i=1}^n u_i + \sum_{j = 1}^n v_j \rightarrow max$ subject to $u_i + v_j \leq 2^{i + j}$ for $1 \leq i, j \leq n$
As far as I know such kind of problems are called dual transportation problem. There are number of algorithms for finding solution, including Simplex algorithm, but I'm struggling to apply them to the case of arbitrary $n$.
Any idea how can I approach this? Thanks!