POJ topic 3903 Stock Exchange (LIC)

Source: Internet
Author: User
Tags stock prices

Stock Exchange
Time Limit: 1000MS Memory Limit: 65536K
Total Submissions: 4790 Accepted: 1710

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.

Source

Southeastern European Regional Programming Contest 2008

[Submit]   [Go back]   [Status] [Discuss]

AC Code

#include <stdio.h> #include <string.h>int dp[100010],n,a[100010];int main () {while (scanf ("%d", &n)! = EOF) {int i,len=0,x;scanf ("%d", &x);DP [++len]=x;for (i=2;i<=n;i++) {scanf ("%d", &x), if (X>dp[len]) {dp[+ +len]=x;} Else{int L=1,r=len,mid;while (l<=r) {mid= (l+r)/2;if (dp[mid]>=x) {r=mid-1;} elsel=mid+1;} Dp[l]=x;}} printf ("%d\n", Len);}}


POJ topic 3903 Stock Exchange (LIC)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.