Language: Testing the CATCHER Time Limit: 1000MS Memory Limit: 30000K 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.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 particular 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 could 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.Sample Input
389 207 155 300 299 170 158 65 -1 23 34 21 -1 -1
Sample Output
Test #1: maximum possible interceptions: 6 Test #2: maximum possible interceptions: 2
Source
World Finals 1994
#include#include #include #include #include #include #include #include #define L(x) (x<<1) #define R(x) (x<<1|1) #define MID(x,y) ((x+y)>>1) #define eps 1e-8 using namespace std; #define N 10005 int 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 a[i]&&temp