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

POJ 2392 Space Elevator

时间:2016-03-22 20:38:41      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:

排序+背包。

先对按高度限制从小到大排序,然后做背包即可。0/1背包300多ms过的,可以用完全背包二进制优化。

#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;

const int maxn=400+10;
int n;
struct X
{
    int h,c,a;
}s[maxn];
int dp[400000+10];
int ans;

bool cmp(const X&a,const X&b)
{
    return a.a<b.a;
}
void read()
{
    for(int i=1;i<=n;i++)
        scanf("%d%d%d",&s[i].h,&s[i].a,&s[i].c);
    sort(s+1,s+1+n,cmp);
}

void init()
{
    memset(dp,0,sizeof dp); dp[0]=1;
    ans=0;
}

void work()
{
    for(int i=1;i<=n;i++)
    {
        for(int j=1;j<=s[i].c;j++)
        {
            for(int p=s[i].a;p>=s[i].h;p--)
            {
                if(dp[p-s[i].h]==1)
                {
                    dp[p]=1;
                    ans=max(ans,p);
                }
            }
        }
    }
    printf("%d\n",ans);
}

int main()
{
    while(~scanf("%d",&n))
    {
        read();
        init();
        work();
    }
    return 0;
}

 

POJ 2392 Space Elevator

标签:

原文地址:http://www.cnblogs.com/zufezzt/p/5308328.html

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