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.

输入描述:

* 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.
示例1

输入

复制
5 2
5
3
4
2
10

输出

复制
9

说明

Bessie runs during the first minute (distance=5), rests during the second minute, runs for the third (distance=4), and rests for the fourth and fifth. Note that Bessie cannot run on the fifth minute because she would not end with a rest factor of 0.

分析

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;
}

/*样例区


*/

//------------------------------------------------------------

 

posted @ 2022-07-21 20:15  er007  阅读(32)  评论(0编辑  收藏  举报