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

建议使用的浏览器:

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

3918:Beiju

题目描述
Tclsm is a beiju guy, so is the beiju he has just bought. The shape he bought beiju (or cup) is not a regular cylinder, but a container with zigzag wall, as the figure shows. Tclsm wanted to know how much water the beiju can hold. As a sophisticated programmer, you are asked to help him.
Placing the beiju on the floor without constraint and pour water into it slowly, the moment water streams out from the beiju, or the beiju falls down,the volume of the water reaches the maximum.
To simplify the problem, you can assume the beiju in 2-dimensional case. There are two walls of the beiju – the left one and the right one. The bottom of the beiju is entirely on the floor.
输入解释
The first line of the input is T, the number of test cases.
Each case has thee lines.
First line has two integers – m n, 1 < m, n < 100. the number of break point of the left wall and the right wall.
Second line has 2m integers, p0x p0y p1x p1y……pm-1x pm-1y, describing the coordinate of the break points in the left wall, from the bottom to top.
Third line has 2n integers, q0x q0y q1x q1y……qn-1x qn-1y, describing the coordinate of the break points in the right wall, from the bottom to top.
You can assume:

  • p0y < p1y <……< pm-1y,q0y < q1y <……< qm-1y,p0y = q0y, p0x < q0x

  • The two walls do not touch or intersect.

  • The two walls have zero thickness.

  • All the numbers in the input are in the range [0, 1000].

输出解释
For each case out put one line containing the maximum height of water the beiju can hold, rounding to the thousands.
输入样例
2
3 3
0 0 1 1 2 2
1 0 2 1 3 2
2 2
0 0 0 2
1 0 1 2
输出样例
1.000
2.000
来自杭电HDUOJ的附加信息
Recommend lcy

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

源链接: HDU-3918

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

共提交 0

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