프로그램 명: coci_suma
제한시간: 2 초

Mirko lives in a big enchanted forest where trees are very tall and grow really quickly. That forest can be represented as an N·N matrix where each field contains one tree.

Mirko is very fond of the trees in the enchanted forest. He spent years observing them and for each tree measured how many meters it grew in a year. The trees grow continuously. In other words, if the tree grows 5 meters in a year, it will grow 2.5 meters in half a year.

Apart from trees, Mirko likes mushrooms from the enchanted forest. Sometimes, he eats suspicious colorful mushrooms and starts thinking about peculiar questions. Yesterday, this unfortunate thing happened and he wondered what would be the size of the largest connected group of trees that are all of equal height if the trees continue to grow at the same speed they’re growing at that moment.

Mirko quickly measured the current height of all trees in the forest and asked you to answer his question. Two trees are adjacent if their fields in the matrix share a common edge. Two trees are connected if there is a sequence of adjacent trees that leads from the first to the second. A group of trees is connected if every pair of trees in the group is connected.

SCORING

In test cases worth 30% of total points, it will hold 1 <= N <= 70.

입력

Warning: Please use faster input methods beacuse the amount of input is very large. (For example, use scanf instead of cin in C++ or BufferedReader instead of Scanner in Java.)

출력

The first and only line of output must contain the required number from the task.

입출력 예

입력

3
1 2 3
3 2 2
5 2 1
3 2 1
1 2 1
1 2 3

출력

7 

입력

2
3 1
3 3
2 5
2 5

출력

3

Clarification of the second example: after 8 months (two thirds of a year), the trees located at (0, 0), (0, 1) and (1, 0)
   will be 13/3 meters in height.
출처:coci_2013/2014_contest2 5/6

[질/답] [제출 현황] [푼 후(0)]
[ 채 점 ] [홈으로]  [뒤 로]