poj 2385

Apple Catching
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 14007   Accepted: 6838

Description

It is a little known fact that cows love apples. Farmer John has two apple trees (which are conveniently numbered 1 and 2) in his field, each full of apples. Bessie cannot reach the apples when they are on the tree, so she must wait for them to fall. However, she must catch them in the air since the apples bruise when they hit the ground (and no one wants to eat bruised apples). Bessie is a quick eater, so an apple she does catch is eaten in just a few seconds.

Each minute, one of the two apple trees drops an apple. Bessie, having much practice, can catch an apple if she is standing under a tree from which one falls. While Bessie can walk between the two trees quickly (in much less than a minute), she can stand under only one tree at any time. Moreover, cows do not get a lot of exercise, so she is not willing to walk back and forth between the trees endlessly (and thus misses some apples).

Apples fall (one each minute) for T (1 <= T <= 1,000) minutes. Bessie is willing to walk back and forth at most W (1 <= W <= 30) times. Given which tree will drop an apple each minute, determine the maximum number of apples which Bessie can catch. Bessie starts at tree 1.

Input

* Line 1: Two space separated integers: T and W

* Lines 2..T+1: 1 or 2: the tree that will drop an apple each minute.

Output

* Line 1: The maximum number of apples Bessie can catch without walking more than W times.

Sample Input

7 2
2
1
1
2
2
1
1

Sample Output

6

Hint

INPUT DETAILS:

Seven apples fall - one from tree 2, then two in a row from tree 1, then two in a row from tree 2, then two in a row from tree 1. Bessie is willing to walk from one tree to the other twice.

OUTPUT DETAILS:

Bessie can catch six apples by staying under tree 1 until the first two have dropped, then moving to tree 2 for the next two, then returning back to tree 1 for the final two.

 
题意:有树1和树2,他们在每一时刻只有一棵树落苹果,给定时间T,可在两棵树间移动的最大次数W,初始时站在树1下面。求能接到苹果数的最大值。
题解:定义状态dp[i][j]表示在i时刻移动了j次时能得到的最大苹果数。状态的含义很重要!则dp[i][j]=max(dp[i-1][j],dp[i-1][j-1])+(移动j次后对应的树正好落苹果?1:0)
  方程想出来了,但是细节,边界处理,循环上还不会。。。显然移动次数为0时状态只能由上一个时间不移动的状态转移过来,即dp[i][0]=dp[i-1][0]+app[i]%2(初始时在树1下),而且有在第一时刻时若树1落苹果则dp[1][0]=1,否则dp[1][1]=1。由于是最多能移动W次并不是一定要移动W次,所以最后在0~W次结果中取最大值。
 #include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std; int dp[][];
int app[]; int main()
{
int T,W;
scanf("%d%d",&T,&W);
memset(dp,,sizeof(dp));
for(int i=;i<=T;i++){
scanf("%d",&app[i]);
}
if(app[]==) dp[][]=;
else dp[][]=;
for(int i=;i<=T;i++){
dp[i][]=dp[i-][]+app[i]%;
for(int j=;j<=W;j++){
dp[i][j]=max(dp[i-][j],dp[i-][j-]);
if(j%+==app[i]) dp[i][j]++;
}
}
int ans=;
for(int i=;i<=W;i++)
ans=max(ans,dp[T][i]);
printf("%d\n",ans);
return ;
}
 

最新文章

  1. SQL Server 变更数据捕获(CDC)
  2. 推荐一个实用的css工具
  3. ZOJ 1442 Dinner Is Ready 容斥原理 + java大数
  4. IOS UIWebView引用外部CSS样式(转载)
  5. hdu acmsteps 2.1.3 Cake
  6. miniUI子窗口调父窗口方法
  7. SSIS 控制流和数据流(转)
  8. C++库研究笔记——操作符重载实现类型转换&这样做的意义
  9. Android iOS Dribbble风格边栏菜单实现
  10. ASP.NET 开发者 开始学习ASP.NET Core 2吧
  11. Muduo阅读笔记---net(三)
  12. vue watch监听验证码时,axios延迟发送post请求。
  13. [一]class 文件浅析 .class文件格式详解 字段方法属性常量池字段 class文件属性表 数据类型 数据结构
  14. mybatis-高级结果映射之一对多
  15. zabbix3.4安转
  16. MyCat不适用场景(使用时避免)
  17. 第三个spring冲刺第4天
  18. Beanutils工具常用方法
  19. nrf52832 连接参数更新过程
  20. Tree Constructing CodeForces - 1003E(构造)

热门文章

  1. SpringCloud是如何运行的?
  2. mysql中not in子查询不能为空
  3. 一站式WPF--依赖属性(DependencyProperty)一
  4. python实例 字符串
  5. history-之前发生了什么
  6. Codeforces 1150D(字符串dp)
  7. R语言可视化--qplot函数
  8. 悠星网络基于阿里云分析型数据库PostgreSQL版的数据实践
  9. Data Lake Analytics账号和权限体系详细介绍
  10. Vue--vue中的组件、组件绑定事件和数据、私有组件、子组件,父子组件参数互传