码迷,mamicode.com
首页 > 其他好文 > 详细

hdu 1176(矩阵dp)

时间:2017-10-21 22:30:48      阅读:401      评论:0      收藏:0      [点我收藏+]

标签:names   while   blog   pre   str   scan   ++   memset   ace   

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

#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)

标签:names   while   blog   pre   str   scan   ++   memset   ace   

原文地址:http://www.cnblogs.com/Wangwanxiang/p/7705696.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!