博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 2385 Apple Catching
阅读量:5461 次
发布时间:2019-06-15

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

Apple Catching
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 6639   Accepted: 3229

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 22112211

Sample Output

6

Hint

INPUT DETAILS:

解题思路:压缩相同步长下取苹果多的,用dp[i] 记录在 i 步下最多的苹果数目

#include 
#include
#include
#include
#include
using namespace std;int dp[40],n,t;struct node{ int step,value; node(int step0=0,int value0=0){ step=step0;value=value0; }};void computing(){ memset(dp,0,sizeof(dp)); int x; node s,d; queue
q; q.push(s); for(int i=0;i



转载于:https://www.cnblogs.com/toyking/p/3797366.html

你可能感兴趣的文章
Java 解析chm文件实战(原创)
查看>>
(HttpMessageNotWritableException ) No converter found for return value of type xxxx
查看>>
个人工作总结18
查看>>
yui cookie Dynamically Change Text Size Using Javascript 动态设置字体大小,写入Cookie
查看>>
elasticsearch-query-builder, 一款可以基于配置化以及参数绑定的ES语句构造神器
查看>>
Java 异常处理
查看>>
Sql中获取表结构(字段名称,类型,长度,说明)
查看>>
90. Subsets II
查看>>
jQuery常用语法
查看>>
隐藏浏览器原生的滚动条
查看>>
[spring mvc]<mvc: annotation-driven />的作用
查看>>
jsplumb
查看>>
20135304刘世鹏——信息安全系统设计基础第十二周总结
查看>>
C++ 连接mysql数据库
查看>>
基于C#开发的简易贪吃蛇
查看>>
Vue 源码解析:深入响应式原理(上)
查看>>
poj2318 TOYS
查看>>
012木桶绕圆滚动
查看>>
having的用法以及与where区别介绍
查看>>
责任链模式
查看>>