nyoj------79拦截导弹

拦截导弹

时间限制: 3000  ms  |  内存限制: 65535  KB
难度: 3
 
描述

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

 
输入
第一行输入测试数据组数N(1<=N<=10) 接下来一行输入这组测试数据共有多少个导弹m(1<=m<=20) 接下来行输入导弹依次飞来的高度,所有高度值均是大于0的正整数。
输出
输出最多能拦截的导弹数目
样例输入
2

8

389 207 155 300 299 170 158 65

3

88 34 65
样例输出
6

2
来源
[张洁烽]原创
上传者
张洁烽
这道题由于数据给的很水,所以做法多样,我才用的是搜索...
代码如下:
 1 #include<iostream>

 2 #include<cstdio>

 3 #include<cstdlib>

 4 #include<cstring>

 5 using namespace std;

 6 int n,m,cnt,ans;

 7 int str[25];

 8 void dfs(int a,int step)

 9 {

10   if(step>m)  return ;

11 

12 

13   if(a>str[step]||a==0)

14   {

15     cnt++;  //用来统计拦截的数目

16     if(cnt>ans)  ans=cnt;  //记录下最大的最大值

17     dfs(str[step],step+1);   //就将最大值作为标尺

18     cnt--;

19   }

20    dfs(a,step+1);  //表示跳过这个值

21  }

22 int main()

23 {

24     int i,j;

25     scanf("%d",&n);

26     while(n--)

27     {

28       ans=cnt=0;

29       scanf("%d",&m);

30       for(i=1 ; i<=m ; i++)

31         scanf("%d",&str[i]);

32        dfs(0,1);

33       printf("%d\n",ans);

34     }

35   return 0;

36 }
View Code

 

你可能感兴趣的:(OJ)