Submit | All submissions | Best solutions | Back to list |
ELIS - Easy Longest Increasing Subsequence |
Given a list of numbers A output the length of the longest increasing subsequence. An increasing subsequence is defined as a set {i0 , i1 , i2 , i3 , ... , ik} such that 0 <= i0 < i1 < i2 < i3 < ... < ik < N and A[ i0 ] < A[ i1 ] < A[ i2 ] < ... < A[ ik ]. A longest increasing subsequence is a subsequence with the maximum k (length).
i.e. in the list {33 , 11 , 22 , 44}
the subsequence {33 , 44} and {11} are increasing subsequences while {11 , 22 , 44} is the longest increasing subsequence.
Input
First line contain one number N (1 <= N <= 10) the length of the list A.
Second line contains N numbers (1 <= each number <= 20), the numbers in the list A separated by spaces.
Output
One line containing the lenght of the longest increasing subsequence in A.
Example
Input:
5
1 4 2 4 3 Output: 3
Added by: | Omar ElAzazy |
Date: | 2012-03-17 |
Time limit: | 1.948s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ASM64 |
hide comments
|
||||||
2018-06-16 08:20:45
ac in one go using pythagoras' area maximizing theorem on monkeys.O(MERI JAAN) is enough. Last edit: 2018-06-16 08:22:05 |
||||||
2017-12-11 10:54:03
AC in one go using Microsoft Paint |
||||||
2016-12-11 08:27:30
#Easy |
||||||
2016-08-14 15:12:40
super easy with LIS |
||||||
2016-04-23 19:57:42
Use LIS algorithm..... |
||||||
2016-04-23 19:57:06
Easy one.. AC in First Go |
||||||
2016-03-13 20:38:48
got AC !!! |
||||||
2015-12-14 19:10:16 Junaid
my first DP...AC in one go...;) |
||||||
2015-10-01 17:57:29
DP rocks :p |
||||||
2015-09-18 01:22:50 Alex-ander007
AC in one go using dp ^_^ |