#E. E - Sequence Decomposing

    传统题 1000ms 256MiB

E - Sequence Decomposing

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

E - Sequence Decomposing

Score : $500$ points

Problem Statement

You are given a sequence with $N$ integers: $A = \{ A_1, A_2, \cdots, A_N \}$. For each of these $N$ integers, we will choose a color and paint the integer with that color. Here the following condition must be satisfied:

  • If $A_i$ and $A_j$ $(i < j)$ are painted with the same color, $A_i < A_j$.

Find the minimum number of colors required to satisfy the condition.

Constraints

  • $1 \leq N \leq 10^5$
  • $0 \leq A_i \leq 10^9$

Input

Input is given from Standard Input in the following format:

NN

A1A_1

::

ANA_N

Output

Print the minimum number of colors required to satisfy the condition.


5
2
1
4
5
3
2

We can satisfy the condition with two colors by, for example, painting $2$ and $3$ red and painting $1$, $4$, and $5$ blue.


4
0
0
0
0
4

We have to paint all the integers with distinct colors.

2024暑假入门组刷题营第三期(八)

未参加
状态
已结束
规则
IOI
题目
8
开始于
2024-7-16 13:00
结束于
2024-7-16 15:00
持续时间
2 小时
主持人
参赛人数
10