Stock Exchange
Time Limit: 1000MS |
|
Memory Limit: 65536K |
Total Submissions: 4578 |
|
Accepted: 1618 |
Description
The world financial crisis is quite a subject. Some people is more relaxed while others is quite anxious. John is one of the them. He is very concerned about the evolution of the stock exchange. He follows stock prices every day looking for rising trends. Given a sequence of numbers p1, p2,..., pn representing stock prices, a rising trend is a subsequence pi1 < Pi2 <. . < Pik, with I1 < I2 < ... < IK. John ' s problem is to find very quickly the longest rising trend.
Input
Each data set in the file stands for a particular set of the stock prices. A data set starts with the length L (l≤100000) of the sequence of numbers, followed by the numbers (a number fits a long Integer).
White spaces can occur freely in the input. The input data is correct and terminate with an end of file.
Output
The program prints the length of the longest rising trend.
For each set of data the program prints the result to the standard output from the beginning of a line.
Sample Input
6 5 2 1 4 5 3 3 1 1 1 4 4 3 2 1
Sample Output
3 1 1
Hint
There is three data sets. In the first case, the length L of the sequence is 6. The sequence is 5, 2, 1, 4, 5, 3. The result for the data set is the length of the longest rising trend:3.This is a very pure lis problem, the longest monotone increment of the length of the subsequence.
1#include <iostream>2#include <algorithm>3#include <cstdio>4#include <string.h>5 using namespacestd;6 Const intINF =10001;7 Const intMAX =100010;8 intBinary_search (intS[],intDigitintlength)9 {Ten intleft=0, right=Length,mid; One while(right!=Left ) A { -Mid= (left+right)/2; - if(digit==S[mid]) the returnmid; - Else if(digit<S[mid]) -right=mid; - Else +Left=mid+1; - } + returnLeft ; A } at intMain () - { - intn,j; - while(~SCANF ("%d",&N)) - { - intA[max]; in intS[max]; - for(intI=1; i<=n;i++) toscanf"%d",&a[i]); +s[0]=a[0]; - intlen=1; the for(intI=1; i<=n;i++) * { $s[len]=inf;Panax Notoginsengj=Binary_search (S,a[i],len); - if(j==len) thelen++; +s[j]=A[i]; A } theprintf"%d\n", len-1); + } - return 0; $}
POJ 3903 Stock Exchange (LIS)