Calligrapher

격자 위에 축에 나란한 N, O, I 도형을 각 글자의 연결 사각형 규칙에 맞게 배치해 덮인 칸 값의 합이 최대가 되도록 한다.

어려움9동적 계획법누적 합구현완전 탐색아직 제출이 없습니다시간 제한1초메모리 제한512 MB

문제

Little E really likes calligraphy. He heard that NOI2013 has started, and would like to give a calligraphic design of "NOI" to everyone.

Little E has one sheet of magical paper. The paper can be represented as a two-dimensional grid with n rows and m columns. We consider the coordinates of the bottom-left corner to be (1, 1) and the coordinates of the top-right corner to be (mn). Each cell of the grid contains an integer "luckiness" value. Writing on a cell can increase everyone's luckiness. The overall luckiness just happens to be the sum of the luckiness values across all cells that have been written on. Now, you need to write the three letters 'N', 'O', and 'I' onto the paper.

The three calligraphic letters are defined as follows:

  1. The 'N' is made up of some number (≥ 3) of rectangles which are parallel to the grid's axes. Let K be the number of rectangles (numbered from 1 to K), then the i-th rectangle's bottom-left corner will have coordinates (LiBi), and its top-right corner will have coordinates (RiTi). These values will satisfy:

    1. Li ≤ Ri,  Bi ≤ Ti;
    2. For all 1 < i ≤ K, it will hold true that Li = R``i−1 + 1;
    3. For all 3 ≤ i < K, it will hold true that B``i−1 − 1 ≤ Ti ≤ T``i−1,  Bi ≤ B``i−1;
    4. B2 > B1,  T2 = T1,  B``K−1 = BK,  T``K−1 < TK.
  2. The 'O' is made up of a bigger rectangle A, with a smaller rectangle B carved out of it. The two rectangles both have sides parallel to the grid's axes. Let (uv) represent the coordinates of the bottom-left corner of rectangle A, and W and H represent its width and height respectively. Then, the smaller rectangle B will have bottom-left corner at (u + 1, v + 1), a width of W − 2, and a height of H − 2. These values will satisfy:

    1. W ≥ 3,  H ≥ 3;
    2. u > RK + 1.
  3. The 'I' is made up of 3 rectangles with sides parallel to the grid's axes, numbered 1, 2, and 3 from bottom to top. Let (PiQi) represent the coordinates rectangle i's bottom-left corner, and (GiHi) represent the coordinates of its top-right corner. These values will satisfy:

    1. Pi ≤ Gi,  Qi ≤ Hi;
    2. P1 = P3 > u + W,  G1 = G3;
    3. Q1 = H1 = Q2 − 1,   H2 + 1 = Q3 = H3;
    4. P1 < P2 ≤ G2 < G1;

The following depicts an example of a valid calligraphic design of the letters 'N', 'O', and 'I'.

Also, shapes drawn in the design must not extend beyond the boundaries of the grid. Little E would like to determine the maximum possible luckiness that his design could produce.

입력

The first line of input will contain two positive integers n and m, respectively representing the number of rows and columns in the grid.

The next n lines will each contain m integers. The j-th integer on line i + 1 of the input represents the luckiness value of the grid cell at (jn− i + 1).

출력

Output a single integer T, representing the maximum total luckiness that his design could produce.

제한

  • 3 ≤ n ≤ 150
  • 3 ≤ m ≤ 500
  • Range of luckiness is an integer in [-200, 200].