zoukankan      html  css  js  c++  java
  • Poj 1887 Testing the CATCHER(LIS)

    一、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.

    二、题解

           这题和3903一样属于LIS问题,在之前有关于LIS的分析 最长递增子序列(LIS)。这次我们不采用DP+二分查找的方法(虽然更好),把之前谈到的纯DP实现一下。注意这里求的是最长非递增序列,是LIS的反问题,只要从数组的最后面开始就行了。

    三、java代码

    import java.util.Scanner;
    
    public class Main{
    static int[] a =new int[10000];
    static int[] maxlen=new int[10000];
    public static void main(String[] args){
    	Scanner cin = new Scanner(System.in);
    	int n,i,j,len,max,ans,cas=0;
    	while(cin.hasNext()){
    	   n=cin.nextInt();
    	   if(n==-1)
    		   break;
    	   a[0]=n;
    	   for(i=1;;i++){
    		   n=cin.nextInt();
    	    if(n==-1) 
    	    	break;
    	    else 
    	    	a[i]=n;
    	   }
    	   len=i-1;
    	   maxlen[len]=1;
    	   for(i=len-1;i>=0;i--){
    	     max=0;
    	     for(j=i+1;j<=len;j++){
    		     if(maxlen[j]>max&&a[j]<a[i])
    		      max=maxlen[j];
    		 }
    	     maxlen[i]=max+1;
    	   }
    	   ans=0;
    	   for(i=0;i<=len;i++){
    	    if(maxlen[i]>ans)
    	      ans=maxlen[i];
    	   }
    	   
    	   System.out.println("Test #"+ ++cas +":");
    	   System.out.println("  maximum possible interceptions: "+ans);
    	   System.out.println();
    	}
     }
    }


    版权声明:本文为博主原创文章,未经博主允许不得转载。

  • 相关阅读:
    今天上传公司服务器出现的.net framework版本错误问题
    浮动后父容器高度自适应
    asp net 编程问题 实现下一篇 和上一篇效果
    注意:"AspNetPager”的控件“AspNetPager1”必须放在具有 runat=server 的窗体标记内
    SqlDbHelper备份,做项目时方便应用(目前不太全,把自己项目中的逐渐转移过来)
    域名状态,域名查询看是否被注册
    关于403 由于扩展配置问题而无法提供您请求的页面的问题
    让qq图标在自己的网站上显示方法
    Tomcat基于虚拟路径的发布和web.xml配置
    Tomcat虚拟目录配置方法及原理
  • 原文地址:https://www.cnblogs.com/AndyDai/p/4734143.html
Copyright © 2011-2022 走看看