hdu 1176(矩阵dp)

Posted 发牌员

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 1176(矩阵dp)相关的知识,希望对你有一定的参考价值。

这是个煞笔题,题目没告诉我他会每秒移动一米啊,而且,不是说两端不能站人吗

#include <iostream>
#include <cstring>
#include <cstdio>
#include <algorithm>
using namespace std;
const int maxn=100000+100;
int dp[maxn][15];
int n;
int main()
{
    while(~scanf("%d",&n)&&n)
    {
        memset(dp,0,sizeof(dp));
         int x,t;
         int max_t=0;
         for(int i=1;i<=n;i++)
         {
            scanf("%d%d",&x,&t);
            dp[t][x]+=1;
            max_t=max(max_t,t);
         }
          for(int i=max_t-1;i>=0;i--)
          {
                for(int j=0;j<=10;j++)
                {
                    if(j==0)
                        dp[i][j]+=max(dp[i+1][j],dp[i+1][j+1]);
                    else
                        dp[i][j]+=max(max(dp[i+1][j-1],dp[i+1][j]),dp[i+1][j+1]);
                }
          }
         printf("%d\n",dp[0][5]);
    }
    return 0;
}

 

以上是关于hdu 1176(矩阵dp)的主要内容,如果未能解决你的问题,请参考以下文章

HDU1176 DP 数塔

简单dp——HDU - 1176

HDU 1176 逆向dp very easy~

HDU-1176 免费馅饼 ( DP )

HDU1176 免费馅饼 —— DP

HDU 1176 免费馅饼:dp