博客
关于我
强烈建议你试试无所不能的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

你可能感兴趣的文章
js编写时间选择框
查看>>
JIRA
查看>>
小技巧——直接在目录中输入cmd然后就打开cmd命令窗口
查看>>
深浅拷贝(十四)
查看>>
HDU 6370(并查集)
查看>>
BZOJ 1207(dp)
查看>>
HDU 2076 夹角有多大(题目已修改,注意读题)
查看>>
洛谷P3676 小清新数据结构题(动态点分治)
查看>>
九校联考-DL24凉心模拟Day2T1 锻造(forging)
查看>>
Attributes.Add用途与用法
查看>>
L2-001 紧急救援 (dijkstra+dfs回溯路径)
查看>>
javascript 无限分类
查看>>
spring IOC装配Bean(注解方式)
查看>>
[面试算法题]有序列表删除节点-leetcode学习之旅(4)
查看>>
SpringBoot系列五:SpringBoot错误处理(数据验证、处理错误页、全局异常)
查看>>
kubernetes_book
查看>>
侧边栏广告和回到顶部
查看>>
https://blog.csdn.net/u012106306/article/details/80760744
查看>>
海上孤独的帆
查看>>
处理程序“PageHandlerFactory-Integrated”在其模块列表中有一个错误模块“Manag
查看>>