当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

3171:Rocket Stages

题目描述
Many rockets are made up of several stages to increase efficiency. When the fuel in one stage burns up, the stage can be discarded, reducing the weight of the remaining rocket. The first stage needs a strong engine capable of lifting the whole rocket, while later stages can have smaller engines.

In this problem, you will determine which stages to put together to maximize the upward velocity of the rocket when all the fuel has burned.

For each stage, you will be given:
  • the mass S of the stage, in kilograms, when it is empty (without fuel),

  • the mass L of the fuel, in kilograms, in the stage,

  • the thrust T, in newtons, provided by the engine in the stage, and

  • the fuel consumption C, in kilograms per second, of the stage.
Assume that the rocket points straight upward for the duration of the flight. Two forces act on the rocket: the force of the engine, which is T newtons upwards, and the force of gravity, which is 9.8 M newtons downwards, where M is the total mass of the rocket in kilograms, including fuel. The acceleration of the rocket is F divided by M metres per second per second upwards, where F is the total net force acting on the rocket in newtons, and M is the total mass of the rocket in kilograms, including fuel. As soon as a stage finishes burning, it is immediately discarded and the next stage starts to burn. The final velocity of the rocket is the integral of the net acceleration (due to gravity and the engine) over time.

Due to safety regulations, the net acceleration of the rocket is never allowed to be downwards, until the rocket runs out of fuel.

Also due to safety regulations, the total mass of the rocket cannot exceed 10000 kilograms.

The rocket must have at least one stage.
输入解释
The first line of input contains one integer specifying the number of test cases to follow. Each test case begins with a line containing an integer N, the number of rocket stages in the current test case. There will be no more than 1000 stages. This line is followed by N lines, one for each stage. Each of these lines contains the four integers S, L, T, C that describe a stage, as explained above. Each of these integers can be represented by a 32-bit unsigned binary number. The order of the stages as listed must be preserved but some stages (including, possibly, the first stage) may be left out of the rocket. The stage listed first is at the top of the rocket (and will burn last). For every test case in the input, it is always possible to construct at least one rocket satisfying all the requirements of the problem statement.
输出解释
For each test case, output a line containing a single integer, the maximum possible speed in metres per second of the rocket when it has finished burning, rounded to the nearest metre per second.
输入样例
1
1
9999 1 1000000 1
输出样例
90
来自杭电HDUOJ的附加信息
Recommend chenrui

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-3171

最后修改于 2020-10-25T23:00:52+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
4000/2000MS(Java/Others) 32768/32768K(Java/Others)