博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
TJU1004
阅读量:5152 次
发布时间:2019-06-13

本文共 1048 字,大约阅读时间需要 3 分钟。

呵呵~~经典动态规划题。当然,这题的数据规模不大,所以就算搜索也不会tle。当然,最好的办法还是动规。这里我用的是搜索+剪枝的办法。
仔细分析一下题目,求一套导弹系统能击落多少导弹就是问你这个数列中最长的不下降(降序)子序列。求要多少导弹系统才能击落所有导弹就是问你这个数列中最长的上升(升序)子序列。第二点我说明一下,一个数列必定存在升序子序列,这个序列里面的任何两个数(两颗导弹)不能被分在一起(被同一个导弹系统击落),而最长的升序子序列的长度就是需要导弹系统的数量。
所以,我优化以后的代码就是这个样子:
None.gif
#include
<
iostream
>
None.gif
using
 
namespace
 std;
None.gif
None.gif
#define
 MAX 20
None.gif
void
 Missile(
int
 current,
int
 step,
int
 index,
int
 lastindex);
None.gif
int
 height[MAX],MaxCount,t;
None.gif
int
 main()
ExpandedBlockStart.gifContractedBlock.gif
dot.gif
{
InBlock.gif    
while(cin>>height[t++])
InBlock.gif        
if(20==t) break;
InBlock.gif    t
--;
InBlock.gif    Missile(
0,0,0,-1);
InBlock.gif    cout
<<MaxCount<<' ';
InBlock.gif    MaxCount
=0;
InBlock.gif    Missile(
0,1,0,-1);
InBlock.gif    cout
<<MaxCount<<endl;
InBlock.gif    
return 0;
ExpandedBlockEnd.gif}
None.gif
void
 Missile(
int
 current,
int
 step,
int
 index,
int
 lastindex)
//
step=0:decrease,step=1:increase
ExpandedBlockStart.gifContractedBlock.gif
dot.gif
{
InBlock.gif    
if(current>MaxCount) MaxCount=current;
InBlock.gif    
if(t==index)return;
InBlock.gif    
if((index+1-current)<(t-MaxCount))
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        index
++;
InBlock.gif        Missile(current,step,index,lastindex);
InBlock.gif        index
--;
ExpandedSubBlockEnd.gif    }
InBlock.gif    
if(-1==lastindex || (step ? height[index]>=height[lastindex] : height[index]<=height[lastindex]))
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        lastindex
=index++;
InBlock.gif        Missile(
++current,step,index,lastindex);
ExpandedSubBlockEnd.gif    }
ExpandedBlockEnd.gif}

转载于:https://www.cnblogs.com/FancyMouse/articles/219500.html

你可能感兴趣的文章
bzoj 2784: [JLOI2012]时间流逝【树形期望dp】
查看>>
利用Git版本控制管理你的项目
查看>>
windows下使用pycharm开发基于ansible api的python程序
查看>>
错误 warning: LF will be replaced by CRLF in README.md.
查看>>
博客园修改鼠标图标样式
查看>>
LInux CentOS7 vsftpd 配置注释
查看>>
Linux CentOS7 httpd 配置注释
查看>>
Sqlserver2012 评估期已过问题
查看>>
关于jquery attr()与prop() 的区别
查看>>
C#调用C++DLL/天地伟业解码器二次开发
查看>>
zend framework 1 连接oracle数据库的写法
查看>>
APUE学习笔记:第九章 进程关系
查看>>
关于 阿里云 的linux 安装 jdk和tomcat 中的问题(解压版的jdk和tomcat)
查看>>
Logstash_Apache日志采集
查看>>
使用localStorage保存搜索记录
查看>>
PHP队列
查看>>
PhpStudy 升级 MySQL 版本到5.7
查看>>
程序代码记Log
查看>>
ORACLE 11G使用用EXPDP导出时,空表不能导出
查看>>
2017-2018-1 20155216 实验三:并发程序
查看>>