知识的价值不在于占有,而在于使用。这篇文章主要讲述POJ2385 Apple Catching(递推)相关的知识,希望能为你提供帮助。
Apple Catching
Time Limit: 1000MS | Memory Limit: 65536K | |
Total Submissions: 13444 | Accepted: 6546 |
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.【POJ2385 Apple Catching(递推)】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.Source
USACO 2004 November --------------------------------------------------------------------------------------------------------------- 分析:我直接用递推做的,先将2的幂全部存在数组里,然后递推即可。 (听说也可以用划分数做)
1 #include < cstdio> 2 #include < algorithm> 3 using namespace std; 4 int w[25],dp[1000005]; 5 int main() 6 { 7int a=1,n; 8scanf("%d",& n); 9for(int i=0; i< =25; i++) 10{ 11w[i]=a; 12a*=2; 13} 14dp[0]=1; 15for(int i=0; i< =25; i++) 16for(int j=w[i]; j< =1000000; j++) 17{ 18dp[j]+=dp[j-w[i]]; 19dp[j]%=1000000000; 20} 21printf("%d",dp[n]%1000000000); 22return 0; 23 }
推荐阅读
- 安卓 传感器基础
- Android Studio常见问题解决
- Appium的DesiredCapabilities参数设置
- android 开源项目集合
- Android驱动开发之Hello实例
- adb测试Doze和App Standby模式
- 如何把手机app的视频下载到手机上(网页上的视频怎么下载?)
- Why does the memory usage increase when I redeploy a web application?
- Android CursorWindow问题备忘