시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB97212130.000%

문제

Boyan is playing a computer game. In the beginning there are N balls arranged in a line. Each ball has a number written on it, so that every two consecutive balls have different numbers. The game consists of the following steps:

  1. The player removes a ball from the line.
  2. While there are consecutive balls with equal numbers, they are automatically removed from the line.
  3. If there are balls left in the line, go to step 1, otherwise the game ends.

The score is the number of balls that are automatically removed. The goal of the game is to maximize the score.

Let’s see an example of a game with 6 balls with numbers {1, 2, 3, 2, 1, 5}.

  1. Boyan removes the ball with number 3. The balls left are {1, 2, 2, 1, 5}.
  2. Removing the consecutive balls with equal numbers we have {1, 2, 2, 1, 5} -> {1, 1, 5} -> {5}. The ball left is {5}.
  3. Since there are balls left, we go to step 1.
  1. Boyan removes the ball with number 5. The balls left are {}.
  2. There are no consecutive balls with equal numbers.
  3. There are no balls left, so the game ends.

The number of balls that are automatically removed is 4. It is the maximum possible score for this game. Boyan is playing a lot, but he is still not sure when he is playing optimally. Write program game to help him to find the best score he can achieve.

입력

The first line contains the positive integer N.

The second line contains N positive integers ─ the numbers written on the balls.

출력

Print the maximum possible score Boyan can achieve.

제한

  • 1 ≤ N ≤ 500
  • 1 ≤ number written on a ball ≤ 1 000 000

예제 입력 1

6
1 2 3 2 1 5

예제 출력 1

4

예제 입력 2

9
1 5 1 3 2 4 2 3 1

예제 출력 2

6

Remove the 9th, 6th and 2nd ball.

출처

Olympiad > International Autumn Tournament in Informatics > 2017 > Group B (Juniors) 2번

  • 문제의 오타를 찾은 사람: yukino