1054 [USACO 2008 Jan S]Running 线性DP
链接:https://ac.nowcoder.com/acm/problem/24949
来源:牛客网
题目描述
The cows are trying to become better athletes, so Bessie is running on a track for exactly N (1 ≤ N ≤ 10,000) minutes. During each minute, she can choose to either run or rest for the whole minute.
The ultimate distance Bessie runs, though, depends on her 'exhaustion factor', which starts at 0. When she chooses to run in minute i, she will run exactly a distance of Di (1 ≤ Di ≤ 1,000) and her exhaustion factor will increase by 1 -- but must never be allowed to exceed M (1 ≤ M ≤ 500). If she chooses to rest, her exhaustion factor will decrease by 1 for each minute she rests. She cannot commence running again until her exhaustion factor reaches 0. At that point, she can choose to run or rest.
At the end of the N minute workout, Bessie's exaustion factor must be exactly 0, or she will not have enough energy left for the rest of the day.
Find the maximal distance Bessie can run.
The ultimate distance Bessie runs, though, depends on her 'exhaustion factor', which starts at 0. When she chooses to run in minute i, she will run exactly a distance of Di (1 ≤ Di ≤ 1,000) and her exhaustion factor will increase by 1 -- but must never be allowed to exceed M (1 ≤ M ≤ 500). If she chooses to rest, her exhaustion factor will decrease by 1 for each minute she rests. She cannot commence running again until her exhaustion factor reaches 0. At that point, she can choose to run or rest.
At the end of the N minute workout, Bessie's exaustion factor must be exactly 0, or she will not have enough energy left for the rest of the day.
Find the maximal distance Bessie can run.
输入描述:
* Line 1: Two space-separated integers: N and M
* Lines 2..N+1: Line i+1 contains the single integer: Di
输出描述:
* Line 1: A single integer representing the largest distance Bessie can run while satisfying the conditions.
分析
n 增大,疲劳值增大,距离变化。线性DP,设dp[i][j] 表示行动了i 秒,疲劳值为j
状态转移方程:
dp[i][0] = max(dp[i-1][0],dp[i-j][j]);
dp[i][j] = dp[i-1][j-1] + a[i]);
//-------------------------代码---------------------------- //#define int ll const int N = 1e5+10; int n,m; int a[N]; int dp[10010][510]; void solve() { cin>>n>>m; fo(i,1,n) { cin>>a[i]; } ms(dp,0); fo(i,1,n) { dp[i][0] = dp[i-1][0]; fo(j,1,m) { if(j < i) dp[i][0] = max(dp[i-j][j],dp[i][0]); dp[i][j] = dp[i-1][j-1]+a[i]; } } cout<<dp[n][0]<<endl; } signed main(){ clapping();TLE; // int t;cin>>t;while(t -- ) solve(); // {solve(); } return 0; } /*样例区 */ //------------------------------------------------------------