POJ 1887-Testing the CATCHER(dp_最长下降子序列)

Testing the CATCHER

Time Limit: 1000MS   Memory Limit: 30000K
Total Submissions: 15382   Accepted: 5657

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 could 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 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.

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

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

题意:让求最长的下降非排序子序列。

思路:dp存储当前的最优步数。没用优化算法,直接硬求。

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <iostream>
#include <algorithm>
#include <map>
#include <string>

using namespace std;
const int inf=0x3f3f3f3f;
int a[40010];
int dp[40010];
int main()
{
    int n,i,j;
    int cnt;
    int t=1;
    while(1)
    {
        scanf("%d",&n);
        if (n==-1)
            break;
        cnt=1;
        a[cnt]=n;
        while(1)
        {
            scanf("%d",&n);
            if (n==-1)
            break;
            a[++cnt]=n;
        }
       int maxx=0;
       for (i=1;i<=cnt;i++)
        {
            dp[i]=1;
            for (j=1;j<=i-1;j++)
            {
                if (a[i]<a[j]&&dp[i]<dp[j]+1)
                {
                    dp[i]=dp[j]+1;
                }
            }
            if (dp[i] > maxx) maxx = dp[i];
        }
        printf("Test #%d:\n",t++);
        printf("  maximum possible interceptions: %d\n\n",maxx);

    }
    return 0;
}
时间: 2024-08-28 04:36:52

POJ 1887-Testing the CATCHER(dp_最长下降子序列)的相关文章

POJ 1887 Testing the CATCHER.

~~~~ 求最长不上升子序列,把数组倒过来不就是求最长上升子序列了么,QAQ.. 用的是nlogn算法,不清楚的请戳:http://blog.csdn.net/darwin_/article/details/38360997 题目链接:http://poj.org/problem?id=1887 ~~~~ #include<iostream> #include<cstdio> #include<algorithm> #include<cstring> #de

[2016-03-11][POJ][1887][Testing the CATCHER]

Testing the CATCHER Time Limit: 1000MS Memory Limit: 30000KB 64bit IO Format: %I64d & %I64u Submit Status Description A military contractor for the Department of Defense has just completed a series of preliminary tests for a new defensive missile cal

POJ 1887 Testingthe CATCHER (LIS:最长下降子序列)

POJ 1887Testingthe CATCHER (LIS:最长下降子序列) http://poj.org/problem?id=3903 题意: 给你一个长度为n (n<=200000) 的数字序列, 要你求该序列中的最长(严格)下降子序列的长度. 分析:        读取全部输入, 将原始数组逆向, 然后求最长严格上升子序列就可以. 因为n的规模达到20W, 所以仅仅能用O(nlogn)的算法求.        令g[i]==x表示当前遍历到的长度为i的全部最长上升子序列中的最小序列末

poj 1952 BUY LOW, BUY LOWER 最长下降子序列+统计不重复方案数

dp[i]=max(dp[i],dp[j]+1) j<i且a[j]>a[i] dp[i]表示长度为i的最长下降子序列的长度. r[i]表示长度为i的最长下降子序列的方案数. 考虑这样一个问题,比如6 3 9 3,对于两个3,他们数字一样并且dp值也一样,那么r[2]的方案数是没有意义的 因为能通过第一个3扩展的也能通过第二个3扩展,所以直接把r[2]=0. 对于一次扩展若dp[j]+1==dp[i],则说明j的路线和i的路线都可以用则r[i]+=r[j] 若dp[j]+1>dp[i],则

poj 1952 BUY LOW, BUY LOWER 最长下降子序列计数

题意: 给n个数,求它的最长下降子序列长度和数量. 分析: dp,计数的时候要避免重复计数. 代码: //poj 1952 //sep9 #include <iostream> using namespace std; const int maxN=5012; int a[maxN]; int dp[maxN]; int num[maxN]; int main() { int i,j,n,ans=0,ansNum=0; scanf("%d",&n); for(i=1

POJ 1887 Testing the CATCHER(LIS的反面 最大递减子序列)

Language: Default 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 defen

POJ3903Stock Exchange&amp;&amp;POJ1631Bridging signals最长上升子序列 &amp;&amp;POJ1887Testing the CATCHER(最长下降子序列)(LIS模版题)

题目链接:http://poj.org/problem?id=3903 题目链接:http://poj.org/problem?id=1631 题目链接:http://poj.org/problem?id=1887 题目解析: 这两道题都是直接求最长上升子序列,没什么好说的. POJ 3903这题n为1000000,如果用n^2的算法肯定超时,所以要选择nlogn的算法.都是简单题. #include <iostream> #include <string.h> #include

POJ 1836 Alignment(DP max(最长上升子序列 + 最长下降子序列))

Alignment Time Limit: 1000MS   Memory Limit: 30000K Total Submissions: 14486   Accepted: 4695 Description In the army, a platoon is composed by n soldiers. During the morning inspection, the soldiers are aligned in a straight line in front of the cap

【最长下降子序列的长度和个数】 poj 1952

转自http://blog.csdn.net/zhang360896270/article/details/6701589 这题要求最长下降子序列的长度和个数,我们可以增加数组maxlen[size](记录当前第1个点到第i个点之间的最长下降序列长度)和maxnum[size](记录1~i之间的最长下降序列个数 ),首先对于最长下降序列属于DP基础题,只要对每一个a[i]求出符合要求(a[i] < a[j])的max( maxlen[j] + 1)即可,主要难点在第二步求下降序列总数 在序列中,