欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Hdu 1176 免费馅饼

程序员文章站 2022-06-30 23:51:17
...

Hdu 1176 免费馅饼

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1176
Hdu 1176 免费馅饼
刚开始没看到gameboy开始在5这个位置,拿全位置写了,直接wa,然后重新倒着写了一遍,就过了,简单的一道dp题,状态转移方程(dp[i][j]=max(dp[i+1][j-1],dp[i+1][j],dp[i+1][j+1])+p[i][j]),p为记录的馅饼位置和时间。
代码如下:

#include <bits/stdc++.h>
using namespace std;
#define MAXN 100005
int dp[MAXN][15],p[MAXN][15];
inline int mix(int a,int b,int c){
    if(a>b)return a>c?a:c;
    return b>c?b:c;
}
int main(){
    int n;
    while(scanf("%d",&n)!=EOF){
        if(n==0)break;
        memset(dp,0,sizeof(dp));
        memset(p,0,sizeof(p));
        int mt=0;
        for(int i=0;i<n;i++){
            int a,b;
            scanf("%d %d",&a,&b);
            mt=mt>b?mt:b;
            p[b][a]++;
        }
        int out=0;
        for(int i=mt;i>=0;i--){
            for(int j=0;j<=10;j++){
                if(j==0){
                    dp[i][j]=(dp[i+1][j]>dp[i+1][j+1]?dp[i+1][j]:dp[i+1][j+1])+p[i][j];
                }else{
                    dp[i][j]=mix(dp[i+1][j-1],dp[i+1][j],dp[i+1][j+1])+p[i][j];
                }
            }
        }
        printf("%d\n",dp[0][5]);
    }
    return 0;
}
相关标签: 补题