导弹拦截问题ACM

/************************************************************************/
/*FileName:导弹拦截问题
/*Author:PenglueR
/*Date:2009/07/23
/*Comment:
Problem description
某国为了防御敌国的导弹袭击,发展出一种导弹拦截系统。但是这种导弹拦截系统有一个缺陷:虽然它的第一发炮弹能够到达任意的高度,但是以后每一发炮弹都不能高于前一发的高度。某天,雷达捕捉到敌国的导弹来袭。由于该系统还在试用阶段,所以只有一套系统,因此有可能不能拦截所有的导弹。

Input
输入数据为导弹依次飞来的高度,所有高度值均为不大于30000的正整数。

Output
输出只有一行是这套系统最多能拦截的导弹数和要拦截所有导弹最少要配备这种导弹拦截系统的套数。两个数据之间用一个空格隔开.

Sample Input
389 207 155 300 299 170 158 65

Sample Output
6 2
/************************************************************************/
  
#include   
#include    
using namespace std;   
int main()   
{   
    int temp,slen=1,ts=1;   
    vector  myvector;   
    while(scanf("%d",&temp)!=EOF)   
        myvector.push_back(temp);   
    int len = myvector.size();   
    vector  vtemp1(len,1);   
    vector  vtemp2(len,1);   
    for(int i=1; i    {   
        for(int j=i-1; j>=0; j--)   
        {   
            if(myvector[j] >= myvector[i] && vtemp1[j]+1 > vtemp1[i])   
            {   
                vtemp1[i] = vtemp1[j]+1;   
                if(vtemp1[i] > slen)     slen = vtemp1[i];   
            }   
            else if(myvector[j] < myvector[i] && vtemp2[j]+1 > vtemp2[i])   
            {   
                vtemp2[i] = vtemp2[j]+1;   
                if(vtemp2[i] > ts)    ts = vtemp2[i];   
            }     
        }   
    }   
    printf("%d %d/n",slen,ts);   
    return 0;   
}  

//////////////////////////////////////////////////////////////////////////////////////////////////////////////

你可能感兴趣的:(C/C++,技术交流)