Light Up is a puzzle set in a rectangular board divided in smaller squares. Some squares in the board are “empty” (white squares the figure below), some squares are “barriers” (dark squares in the figure below). A barrier square may have an integer number i associated to it $(0 \leq i \leq 4)$.

In this puzzle the goal is to “light up” all the empty squares by placing lamps in some of them (lamps are depicted as circles in the figure). Each lamp illuminates the square it is on, plus all squares in line with it, horizontally or vertically, up to a barrier square or the board end.
A winning configuration satisfies the following conditions:
- all empty squares must be lit;
- no lamp may be lit by another lamp;
- all numbered barrier squares must have exactly that number of lamps adjacent to them (in the four squares above, below, and to the side);
- non-numbered barrier squares may have any number of lamps adjacent to them.
You must write a program to determine the smallest number of lamps that are needed to reach a winning configuration.
Output
For each test case in the input your program must produce one line of output, containing either an integer indicating the smallest number of lamps needed to reach a winning configuration, in case such a configuration exists, or the words $\texttt{‘No solution’}$.
The output must be written to standard output.