zoukankan      html  css  js  c++  java
  • poj-3661 Running(DP)

    http://poj.org/problem?id=3661

     

    Description

    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.

    Input

    * Line 1: Two space-separated integers: N and M
    * Lines 2..N+1: Line i+1 contains the single integer: Di

    Output

    * Line 1: A single integer representing the largest distance Bessie can run while satisfying the conditions.

    Sample Input

    5 2
    5
    3
    4
    2
    10

    Sample Output

     9

    编程思想:

    设dp[i][j]表示第i分钟疲劳值为j的最优状态,每分钟都有两种选择,

    该分钟选择跑时的最优状态由上一分钟的最优状态决定,状态转移方程为:dp[i][j]=dp[i-1][j-1]+D[i],

    该分钟选择休息时,由于一开始休息就要等疲劳值恢复为0时才可以开始选择跑或继续休息,在开始休息到疲劳值还未减为0的这段时间(用k表示)的每一分钟,只能选择休息,故该状态的最优状态由前面开始决定休息的时间点(i-k)决定,则态转移方程为:dp[i][0]=max(dp[i-k][k]);其中1=<k<=i-k。
    题解AC代码:

     1 #include<iostream>
     2 #include<algorithm>
     3 #include<stdio.h>
     4 #include<cstring>
     5 #include<cmath>
     6 #include<vector>
     7 #include<string.h>
     8 #define LL long long
     9 using namespace std;
    10 const int INF=0x3f3f3f3f;
    11 int dp[10001][501];
    12 int D[10011];
    13 int main()
    14 {
    15    //freopen("D:\in.txt","r",stdin);
    16     int T,cas,i,j,k,n,m;
    17     while(scanf("%d%d",&n,&m)!=EOF)
    18     {
    19         for(i=1;i<=n;i++)
    20         {
    21             scanf("%d",&D[i]);
    22         }
    23         memset(dp,0,sizeof(dp));
    24         for(i=1;i<=n;i++)
    25         {
    26             for(j=1;j<=m;j++)
    27             {
    28                dp[i][j]=dp[i-1][j-1]+D[i];
    29             }
    30             dp[i][0]=dp[i-1][0];
    31             for(k=1;k+k<=i;k++)
    32             {
    33                 dp[i][0]=max(dp[i][0],dp[i-k][k]);
    34             }
    35         }
    36         printf("%d
    ",dp[n][0]);
    37     }
    38     return 0;
    39 }

    自己AC代码:

     1 #include <stdio.h>
     2 #include <string.h>
     3 #include <iostream>
     4 #include <string>
     5 #include <math.h>
     6 #include <algorithm>
     7 #include <queue>
     8 #include <set>
     9 const int INF=0x3f3f3f3f;
    10 using namespace std;
    11 #define maxn 10010
    12 
    13 int a[maxn];
    14 int dp[505][maxn];
    15 
    16 int main()
    17 {
    18     int n,m;
    19     scanf("%d %d",&n,&m);
    20     for(int i=1;i<=n;i++)
    21     {
    22         scanf("%d",&a[i]);
    23     }
    24     int MAX=0;
    25     dp[1][1]=a[1];    
    26     for(int j=2;j<=n;j++)
    27     { 
    28         int x=1,y=j-1;
    29         while(y>0&&x<=m)//找dp[0][j] 
    30         {
    31             if(dp[x][y]>dp[0][j])
    32                 dp[0][j]=dp[x][y];
    33             x++;
    34             y--;
    35             if(dp[0][j]>MAX)
    36                 MAX=dp[0][j];
    37             else dp[0][j]=MAX;
    38         }
    39         
    40         for(int i=1;i<=m;i++)//更新其余的 
    41         {
    42             dp[i][j]=dp[i-1][j-1]+a[j];
    43         }
    44             
    45     }
    46     printf("%d
    ",dp[0][n]);
    47     return 0;
    48 }
  • 相关阅读:
    想不赚钱都难的7大行业
    [转帖]一位年轻商人的经验感悟
    对待下级十二条准则
    让自己幸福的10条秘诀
    孤独感
    “3+3”看华为云FusionInsight如何引领“数据新基建”持续发展
    【乘风破浪的开发者】丁一超:从AI实战营出发探索未知的AI世界
    适用初学者的5种Python数据输入技术
    遥感影像处理有高招,“专治”各类花式并发的述求!
    从“小众”到“首选”,推动云原生产业落地华为云作用几何?
  • 原文地址:https://www.cnblogs.com/jiamian/p/11269561.html
Copyright © 2011-2022 走看看