Apple Catching
Time Limit: 1000MS |
|
Memory Limit: 65536K |
Total Submissions: 13444 |
|
Accepted: 6546 |
Description
It is a little known fact, cows love apples. Farmer John has the apple trees (which is conveniently numbered 1 and 2) in the His field, each of the apples. Bessie cannot reach the apples when they is 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 hits the ground (and no one wants to eat bruised Apples). Bessie is a-a quick eater, so an apple she does catch was eaten in just a few seconds.
Each minute, one of the trees drops Apple. Bessie, has much practice, can catch an apple if she's standing under a tree from which one falls. While Bessie can walk between the both trees quickly (in much less than a minute), she can stand under only one tree at any Time. Moreover, cows do don't get a lot of exercise, so she's not willing to walk back and forth between the trees endlessly (and Thus misses some apples).
Apples Fall (one minute) for T (1 <= T <=) minutes. Bessie is willing to walk back and forth at most W (1 <= w <=) times. Given which tree would 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 would 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:
Seven apples fall-one from tree 2, then both in a row from tree 1, then both in a row from tree 2, then both 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 has dropped, then moving to Tree 2 for the next T Wo, then returning back to Tree 1 for the final.
Source
Usaco 2004 November--------------------------------------------------------------------------------------------- ------------------Analysis:I do it directly with the recursive, first the power of 2 all exist in the array, and then recursion can be. (heard can also be done by dividing numbers)
1#include <cstdio>2#include <algorithm>3 using namespacestd;4 intw[ -],dp[1000005];5 intMain ()6 {7 intA=1, N;8scanf"%d",&n);9 for(intI=0; i<= -; i++)Ten { Onew[i]=A; Aa*=2; - } -dp[0]=1; the for(intI=0; i<= -; i++) - for(intj=w[i];j<=1000000; j + +) - { -dp[j]+=dp[j-W[i]]; +dp[j]%=1000000000; - } +printf"%d", dp[n]%1000000000); A return 0; at}
"POJ" 2385 Apple catching (recursive)