#P7028. [USACO][2009][MAR][B] Plumbing the Pond

[USACO][2009][MAR][B] Plumbing the Pond

Description

Bessie's drinks water from a pond in the northwest part of the farm. It has an interesting bottom in that it is full of little hills and valleys. She wonders how deep it is.

She trolls across the pond in her little boat with a very old radar set that tends to have spurious readings. She knows the deepest part is relatively flat and has decided that she'll believe the largest depth number only if it is verified by the fact that the same depth appears in an adjacent reading.

The pond is modeled as an R x C (1 <= R <= 50; 1 <= C <= 50) grid of (positive integer) depth readings DrcD_rc (0 <= DrcD_rc <= 1,000,000); some readings might be 0 -- those are not part of the pond. A depth reading of 10 means "depth of 10".

Find the greatest depth that appears in at least two 'adjacent' readings (where 'adjacent' means in any of the potentially eight squares that border a square on each of its sides and its diagonals). She knows the pond has at least one pair of positive, adjacent readings.

Format

Input

  • Line 1: Two space-separated integers: R and C
  • Lines 2..R+1: Line i+1 contains C space-separated integers that represent the depth of the pond across row i: DrcD_rc

Output

  • Line 1: A single integer that is the depth of the pond determined by following Bessie's rules.

Samples

4 3
0 1 0
1 2 0
1 5 1
2 3 4
1

Details

INPUT DETAILS:

The pond has 4 rows, 3 columns.

OUTPUT FORMAT:

  • Line 1: A single integer that is the depth of the pond determined by following Bessie's rules.