博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj 2392 Space Elevator
阅读量:6464 次
发布时间:2019-06-23

本文共 1435 字,大约阅读时间需要 4 分钟。

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.
 
这题首先要对每种石头能放的最大大高度进行排序,然后在进行取石头,用数组f[j]标记能到达的高度为j,同时还要use[i]数组记录到达高度j时每种石头用的个数。
代码如下
1 #include
2 #include
3 #include
4 using namespace std; 5 struct ss 6 { 7 int h,a,c; 8 /*bool operator<(const ss &g)const{ 9 return a

 

转载于:https://www.cnblogs.com/gantaiyuan/p/3268760.html

你可能感兴趣的文章
join为什么每个字符都分割了 js_js中join()与 split()的对比
查看>>
antd 动态添加表单_antd中form表单添加与删除
查看>>
蓝桥杯单片机十一届省赛_卓因学员斩获第十一届“蓝桥杯”全国创意编程大赛一等奖...
查看>>
c语言倒计时不影响进程_linux学习15,执行程序就像读文章,换本书就相当于切换了进程...
查看>>
float正则表达式 带逗号_python正则表达式小试牛刀
查看>>
cf卡序列号修改工具_雄迈测试工装工具
查看>>
$.getjson异常信息提示_SpringBoot 异常处理
查看>>
数字盲打怎么练_一篇文章告诉你关于学习盲打的知识
查看>>
anaconda处理大数据_大数据的处理流程
查看>>
饲料码垛机器人技术方案_坐标机器人码垛机的技术和结构特点
查看>>
access查询成绩小于5分_CPA考生59分真相:成绩查询当天,他其实有一次通过的机会...
查看>>
asp手机拍照显示_手机 | 华为P50外形曝光:首次采居中挖孔、后摄类似Mate40
查看>>
风电场数据库_如何让风电场更友好、更智慧?
查看>>
全局 快捷键_让同事看呆的表格快捷键
查看>>
# 保持最外层获取焦点_PCB外层的蚀刻工艺,如何把控蚀刻质量
查看>>
华为如何生成日志_深入理解Kafka服务端之滚动生成新日志段的流程及条件
查看>>
各维度 特征 重要程度 随机森林_随机森林算法梳理
查看>>
手机悉昙体梵文输入法_梵文天城体字体及输入法
查看>>
qt编译实现简单的文本编译器有粘贴复制_QT示例之实现简易文本编辑器
查看>>
雷达的工作原理示意图_雷达测距原理.ppt
查看>>