POJ 1887 Testing the CATCHER (largest descending subsequence of LIS), pojlis

Source: Internet
Author: User

POJ 1887 Testing the CATCHER (largest descending subsequence of LIS), pojlis

Language:DefaultTesting the CATCHER
Time Limit:1000 MS   Memory Limit:30000 K
Total Submissions:15207   Accepted:5595

Description

A military contractor for the Department of Defense has just completed a series of preliminary tests for a new defensive missile called the CATCHER which is capable of intercepting multiple incoming offensive missiles. the CATCHER is supposed to be a remarkable defensive missile. it can move forward, laterally, and downward at very fast speeds, and it can intercept an offensive missile without being damaged. but it does have one major flaw. although it can be fired to reach any initial elevation, it has no power to move higher than the last missile that it has intercepted.

The tests which the contractor completed were computer simulations of battlefield and hostile attack conditions. since they were only preliminary, the simulations tested only the CATCHER's vertical movement capability. in each simulation, the CATCHER was fired at a sequence of offensive missiles which were incoming at fixed time intervals. the only information available to the CATCHER for each incoming missile was its height at the point it cocould be intercepted and where it appeared in the sequence of missiles. each incoming missile for a test run is represented in the sequence only once.

The result of each test is reported as the sequence of incoming missiles and the total number of those missiles that are intercepted by the CATCHER in that test.

The General Accounting Office wants to be sure that the simulation test results submitted by the military contractor are attainable, given the constraints of the CATCHER. you must write a program that takes input data representing the pattern of incoming missiles for several different tests and outputs the maximum numbers of missiles that the CATCHER can intercept for those tests. for any incoming missile in a test, the CATCHER is able to intercept it if and only if it satisfies one of these two conditions:

The incoming missile is the first missile to be intercepted in this test.
-Or-
The missile was fired after the last missile that was intercepted and it is not higher than the last missile which was intercepted.

Input

The input data for any test consists of a sequence of one or more non-negative integers, all of which are less than or equal to 32,767, representing the heights of the incoming missiles (the test pattern ). the last number in each sequence is-1, which signifies the end of data for that Fig test and is not considered to represent a missile height. the end of data for the entire input is the number-1 as the first value in a test; it is not considered to be a separate test.

Output

Output for each test consists of a test number (Test #1, Test #2, etc .) and the maximum number of incoming missiles that the CATCHER cocould possibly intercept for the test. that maximum number appears after an identifying message. there must be at least one blank line between output for successive data sets.

Note: The number of missiles for any given test is not limited. If your solution is based on an inefficient algorithm, it may not execute in the allotted time.

Sample Input

38920715530029917015865-1233421-1-1

Sample Output

Test #1:  maximum possible interceptions: 6Test #2:  maximum possible interceptions: 2

Source

World Finals 1994


#include<iostream>#include<cstdio>#include<cstring>#include<algorithm>#include<cmath>#include<queue>#include<stack>#include<vector>#define L(x) (x<<1)#define R(x) (x<<1|1)#define MID(x,y) ((x+y)>>1)#define eps 1e-8using namespace std;#define N 10005int a[N],dp[N];int main(){int i,j,n,x,ca=0;while(scanf("%d",&x)){if(x==-1) break;n=0;a[n++]=x;while(1){scanf("%d",&x);if(x==-1) break;a[n++]=x;}dp[0]=1;int ans=1;int temp;for(i=1;i<n;i++){temp=0;for(j=0;j<i;j++)if(a[j]>a[i]&&temp<dp[j])temp=dp[j];dp[i]=temp+1;if(ans<dp[i])ans=dp[i];}  printf("Test #%d:\n",++ca);      printf("  maximum possible interceptions: %d\n\n",ans);}     return  0;}







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.