101765: [AtCoder]ABC176 F - Brave CHAIN

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $600$ points

Problem Statement

We have $3N$ cards arranged in a row from left to right, where each card has an integer between $1$ and $N$ (inclusive) written on it. The integer written on the $i$-th card from the left is $A_i$.

You will do the following operation $N-1$ times:

  • Rearrange the five leftmost cards in any order you like, then remove the three leftmost cards. If the integers written on those three cards are all equal, you gain $1$ point.

After these $N-1$ operations, if the integers written on the remaining three cards are all equal, you will gain $1$ additional point.

Find the maximum number of points you can gain.

Constraints

  • $1 \leq N \leq 2000$
  • $1 \leq A_i \leq N$

Input

Input is given from Standard Input in the following format:

$N$
$A_1$ $A_2$ $\cdots$ $A_{3N}$

Output

Print the maximum number of points you can gain.


Sample Input 1

2
1 2 1 2 2 1

Sample Output 1

2

Let us rearrange the five leftmost cards so that the integers written on the six cards will be $2\ 2\ 2\ 1\ 1\ 1$ from left to right.

Then, remove the three leftmost cards, all of which have the same integer $2$, gaining $1$ point.

Now, the integers written on the remaining cards are $1\ 1\ 1$.

Since these three cards have the same integer $1$, we gain $1$ more point.

In this way, we can gain $2$ points - which is the maximum possible.


Sample Input 2

3
1 1 2 2 3 3 3 2 1

Sample Output 2

1

Sample Input 3

3
1 1 2 2 2 3 3 3 1

Sample Output 3

3

Input

题意翻译

hhoppitree 有 $3n$ 张卡片,其中每张卡片上都写着 $1\sim n$ 中的一个数,他会重复以下操作 $n-1$ 次: - 将最左侧的 $5$ 张牌**任意排列**,排列后,删去最左侧的 $3$ 张牌,如果这三张牌上写着同样的数,hhoppitree 可以获得 $1$ 分。 最后,如果剩余的 $3$ 张牌上的数字一样,那么他还可以额外得到 $1$ 分。 现在,hhoppitree 想要知道,他得到的分数最高是多少。

加入题单

算法标签: