#P15643. [ICPC 2022 Tehran R] Ammunition Storage

[ICPC 2022 Tehran R] Ammunition Storage

Description

The Do-Barareh military area is like an n×mn\times m grid, each cell of which has a specific height. The commander of this military area is looking for a rectangular sub-area of this area, with width and height least 22, whose its four corner cells are higher than the rest of its cells. He plans to install watchtowers in the corners of this sub-area to monitor the entire sub-area and use it for ammunition storage. Your job is to help the commander to find out how many valid sub-areas there are to choose as the ammunition storage. You can assume cell heights are distinct.

Input Format

The first line of input contains two space-separated integers nn and mm (2n,m7502 \leqslant n,m \leqslant 750). Each of the next nn lines contains mm space-separated integers showing the cell heights. It is guaranteed cell heights are distinct numbers between 11 and nmnm (inclusive).

Output Format

Print the number of valid sub-areas to be used as an ammunition storage.

3 3
9 4 8
2 1 3
7 5 6
7