hdoj 1176免费馅饼(dp)
【摘要】
题目链接
//2013-05-17-21.08
#include <stdio.h>
#include <string.h>
#include <algorithm>
using namespace std;
const int maxn = 100004;
int dp[maxn][12...
//2013-05-17-21.08
#include <stdio.h>
#include <string.h>
#include <algorithm>
using namespace std;
const int maxn = 100004;
int dp[maxn][12];
int main()
{
int n, maxt, t, x;
int tmax;
while(scanf("%d", &n) && n)
{
memset(dp, 0, sizeof(dp));
maxt = 0;
for (int i = 0; i < n; i++)
{
scanf("%d%d",&x, &t);
maxt = max(t, maxt);
dp[t][x]++;
}
t = maxt;
for (t--; t >= 0; t--)
{
for (int i = 0; i <= 10; i++)
{
if (i == 0)
tmax = max(dp[t+1][i], dp[t+1][i+1]);
else if (i == 10)
tmax = max(dp[t+1][i], dp[t+1][i-1]);
else
{
tmax = max(dp[t+1][i-1], dp[t+1][i]);
tmax = max(tmax, dp[t+1][i+1]);
}
dp[t][i] += tmax;
}
}
printf("%d\n", dp[0][5]);
}
return 0;
}
文章来源: xindoo.blog.csdn.net,作者:xindoo,版权归原作者所有,如需转载,请联系作者。
原文链接:xindoo.blog.csdn.net/article/details/8941856
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)