This is a classic LIS problem. Given a sequence of N (1 ≤ N ≤ 5,100) numbers, output the length of the longest increasing subsequence.
The longest increasing subsequence problem is to find a subsequence of a given sequence in which the subsequence elements are in sorted order (strictly increasing), lowest to highest, and in which the subsequence is as long as possible. This subsequence is not necessarily contiguous.
The first line has an integer N, denoting the number of integers in the sequence. The next line contains N integers.
Output the length of the longest increasing subsequence.
6 1 2 4 4 5 3
4
Subtask | Score |
---|---|
1 | 100 |
2 | 0 |