最长下降子序列
You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.
给定一个长度为 n 的整数序列,计算其中的最长下降子序列的长度。
输入格式
第一行输入一个整数 n,表示序列的长度。
接下来一行 n 个整数 ,表示读入的序列元素。
输出格式
输出一个整数,表示序列的最长下降子序列长度。
样例输入
5
5 3 1 3 2
样例输出
3