Mirko has a chessboard with
Help Mirko cover the largest sum of numbers possible with the dominoes!
Input Specification
The first line of input contains the integer
Each of the following
Output Specification
The first and only line of output must contain the maximal sum possible to cover with exactly
Sample Input 1
5 3
2 1 -1
1 3 2
0 2 3
2 1 1
3 3 0
Sample Output 1
16
Explanation for Sample Output 1
It is optimal to place all dominoes horizontally and along the right edge of the second row, right edge of the third row and along the left edge of the final row.
Sample Input 2
2 2
0 4 1
3 5 1
Sample Output 2
13
Comments