logo AlgoBeat OnlineJudge
登录 注册

#104780. [BZOJ 4780] [Usaco2017 Open]Modern Art 2

内存限制:512 MiB 时间限制:1000 ms 标准输入输出
题目类型:传统 评测方式:无测试数据
上传者: 匿名

题目描述

Having become bored with standard -dimensional artwork (and also frustrated at others copying her work), the great bovine artist Picowso has decided to switch to a more minimalist, -dimensional style.

Although, her paintings can now be described by a -dimensional array of colors of length , her painting style remains unchanged: she starts with a blank canvas and layers upon it a sequence of "rectangles" of paint, which in this -dimensional case are simply intervals. She uses each of the colors exactly once, although just as before, some colors might end up being completely covered up by the end.

To Picowso's great dismay, her competitor Moonet seems to have figured out how to copy even these 1-dimensional paintings, using a similar strategy to the preceding problem: Moonet will paint a set of disjoint intervals, wait for them to dry, then paint another set of disjoint intervals, and so on. Moonet can only paint at most one interval of each color over the entire process. Please computethe number of such rounds needed for Moonet to copy a given -dimensional Picowso painting.

输入格式

The first line of input contains , and the next lines contain an integer in the range indicating the color of each cell in the -dimensional painting ( for a blank cell).

输出格式

Please output the minimum number of rounds needed to copy this painting, or -1 if this could not have possibly been an authentic work of Picowso (i.e., if she could not have painted it using a layered sequence of intervals, one of each color).

样例

样例输入 #1

7
0
1
4
5
1
3
3

样例输出 #1

2

样例解释

In this example, the interval of color must be painted in an earlier round than the intervals of colors and , so at least two rounds are needed.

数据范围与提示

对于 的数据,

来源

Gold