Submit | All submissions | Best solutions | Back to list |
INCSEQ - Increasing Subsequences |
Given a sequence of N (1 ≤ N ≤ 10,000) integers S1, ..., SN (0 ≤ Si < 100,000), compute the number of increasing subsequences of S with length K (1 ≤ K ≤ 50 and K ≤ N); that is, the number of K-tuples i1, ..., iK such that 1 ≤ i1 < ... < iK ≤ N and Si1 < ... < SiK.
Input
The first line contains the two integers N and K. The following N lines contain the integers of the sequence in order.
Output
Print a single integer representing the number of increasing subsequences of S of length K, modulo 5,000,000.
Example
Input: 4 3 1 2 2 10 Output: 2
The two 3-tuples are (1, 2, 4) and (1, 3, 4), both corresponding to the subsequence 1, 2, 10.
Added by: | Neal Wu |
Date: | 2008-06-20 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ERL JS-RHINO |
Resource: |
hide comments
|
|||||||||
2012-03-14 15:09:52 სვანიძე
Myprog works in o(n*k*log(100000)) and it returns TLE help :( RE:Well, the official solution works exactly in that time, I couldn't think of a better one, you must be having a big constant. Last edit: 2012-03-14 16:05:19 |
|||||||||
2012-01-10 12:02:29 ulasuevoli
My code fails for 4 1 1 2 3 4 Answer should be 4 but my AC answer is 0 I think the author should include this case . :P |
|||||||||
2011-12-18 16:43:52 Pranay
can try ELDORADO in tutorial.. |
|||||||||
2011-09-02 15:28:21 Vlade087
anybody can give me some testdata Last edit: 2011-09-02 17:16:16 |
|||||||||
2011-08-04 17:50:35 aayush
DP??? |
|||||||||
2011-05-14 02:35:50 Fahim Zubayer
DO REMEMBER to handle the zero :( Cost me a lot of TLE's |
|||||||||
2010-05-20 11:52:41 Nikhil Garg
INCDSEQ is a similar problem. |