Given a (sparse, or banded if it make things easier) matrix $Q \in \{-1, 0,1\}^{n \times m}$, where $m \gg n$, I want to solve the following optimization problem
$$\max_{v, w \in \{\pm 1\}^n} v Q w^{T}$$
I guess it's in NP. Is there a name or efficient algorithm for this kind of problem? Is it possible to reformulate it as like Max-Cut problem?
Quadratic Integer Programming.
See en.wikipedia.org/wiki/Quadratic_programming for solution approaches.