POJ 2392 Space Elevator

来源:互联网 发布:西门子数控仿真软件 编辑:程序博客网 时间:2024/05/23 10:12
Space Elevator
Time Limit: 1000MS Memory Limit: 65536KTotal Submissions: 8778 Accepted: 4168

Description

The cows are going to space! They plan to achieve orbit by building a sort of space elevator: a giant tower of blocks. They have K (1 <= K <= 400) different types of blocks with which to build the tower. Each block of type i has height h_i (1 <= h_i <= 100) and is available in quantity c_i (1 <= c_i <= 10). Due to possible damage caused by cosmic rays, no part of a block of type i can exceed a maximum altitude a_i (1 <= a_i <= 40000). 

Help the cows build the tallest space elevator possible by stacking blocks on top of each other according to the rules.

Input

* Line 1: A single integer, K 

* Lines 2..K+1: Each line contains three space-separated integers: h_i, a_i, and c_i. Line i+1 describes block type i.

Output

* Line 1: A single integer H, the maximum height of a tower that can be built

Sample Input

37 40 35 23 82 52 6

Sample Output

48

Hint

OUTPUT DETAILS: 

From the bottom: 3 blocks of type 2, below 3 of type 1, below 6 of type 3. Stacking 4 blocks of type 2 and 3 of type 1 is not legal, since the top of the last type 1 block would exceed height 40.


题意:

        给出k段高度为h,数量为c,并且高度不超过c的木块,求建造的最高的塔

题解:

        肯定要先根据木块的最高高度c排序,然后用背包来解决。


代码:

#include <iostream>#include <cstdio>#include <cstring>#include <algorithm>using namespace std;const int maxn=40000+100;int dp[maxn];struct node{    int h;    int a;    int c;}p[505];bool cmp(node x,node y){    return x.a<y.a;}int main(){    int n;    while(~scanf("%d",&n))    {        for(int i=0;i<n;i++)        {            scanf("%d%d%d",&p[i].h,&p[i].a,&p[i].c);        }        sort(p,p+n,cmp);        memset(dp,0,sizeof(dp));        dp[0]=1;        int ans=0;        for(int i=0;i<n;i++)        {            for(int j=p[i].a;j>0;j--)//最高高度开始,不让前面的操作影响后面的            {                for(int k=p[i].c;k>=0;k--)//使用的第i种木块不断增多,还可以用个count数组降低复杂度,此循环不要                {                    if(j-p[i].h*k>=0&&dp[j-p[i].h*k])                    {                        ans=max(ans,j);                        dp[j]=1;                    }                }            }        }        printf("%d\n",ans);    }    return 0;}



0 0
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 小产权年限过了怎么办 帅的人突然变丑怎么办 感冒了鼻子不通气怎么办 不停的流清鼻涕怎么办 被苍蝇咬了屁股怎么办 牛苍蝇咬了肿了怎么办 眼睛被苍蝇咬了怎么办 小孩被仓鼠咬了怎么办 压水井不上水了怎么办 小鸟拉屎在鞋上怎么办 解完大便屁眼疼怎么办 拉大便后肛门痛怎么办 3岁宝宝肛裂怎么办 无臂人大便后怎么办 老婆移情别恋了怎么办 自己移情别恋了怎么办 嘴巴里破了变白怎么办 上嘴唇里面长泡怎么办 嘴皮里面长泡怎么办 嘴巴里经常长泡怎么办 嘴唇上长透明泡怎么办 嘴唇上长很多泡怎么办 嘴巴里长白色泡怎么办 做了漂唇起泡了怎么办 漂唇之后起泡了怎么办 漂唇后起了水泡怎么办 嘴唇起泡,弄破了怎么办 九个月的宝宝上火了怎么办 8岁儿童嘴唇起泡怎么办 宝宝嘴皮上火起泡了怎么办 上嘴唇起泡肿了怎么办 上嘴唇突然肿了怎么办? 醒来上嘴唇肿了怎么办 嘴巴突然肿了怎么办呢 下嘴唇肿起来了怎么办 上嘴唇肿了起泡怎么办 上火下嘴唇肿了怎么办 上火嘴唇都肿了怎么办 嘴唇起泡后肿了怎么办 嘴唇上有白点颗粒状怎么办 嘴唇缺了一块红怎么办