A10188 | Babaei and Birthday Cake
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
As you know, every birthday party has a cake! This time, Babaei is going to prepare the very special birthday party's cake.
Simple cake is a cylinder of some radius and height. The volume of the simple cake is equal to the volume of corresponding cylinder. Babaei has $n$ simple cakes and he is going to make a special cake placing some cylinders on each other.
However, there are some additional culinary restrictions. The cakes are numbered in such a way that the cake number $i$ can be placed only on the table or on some cake number $j$ where $j<i$ . Moreover, in order to impress friends Babaei will put the cake $i$ on top of the cake $j$ only if the volume of the cake $i$ is strictly greater than the volume of the cake $j$ .
Babaei wants to prepare a birthday cake that has a maximum possible total volume. Help him find this value.
Simple cake is a cylinder of some radius and height. The volume of the simple cake is equal to the volume of corresponding cylinder. Babaei has $n$ simple cakes and he is going to make a special cake placing some cylinders on each other.
However, there are some additional culinary restrictions. The cakes are numbered in such a way that the cake number $i$ can be placed only on the table or on some cake number $j$ where $j<i$ . Moreover, in order to impress friends Babaei will put the cake $i$ on top of the cake $j$ only if the volume of the cake $i$ is strictly greater than the volume of the cake $j$ .
Babaei wants to prepare a birthday cake that has a maximum possible total volume. Help him find this value.
输入格式
The first line of the input contains a single integer $n$ ( $1<=n<=100000)$ — the number of simple cakes Babaei has.
Each of the following $n$ lines contains two integers $r_{i}$ and $h_{i}$ ( $1<=r_{i},h_{i}<=10000$ ), giving the radius and height of the $i$ -th cake.
Each of the following $n$ lines contains two integers $r_{i}$ and $h_{i}$ ( $1<=r_{i},h_{i}<=10000$ ), giving the radius and height of the $i$ -th cake.
输出格式
Print the maximum volume of the cake that Babaei can make. Your answer will be considered correct if its absolute or relative error does not exceed $10^{-6}$ .
Namely: let's assume that your answer is $a$ , and the answer of the jury is $b$ . The checker program will consider your answer correct, if .
Namely: let's assume that your answer is $a$ , and the answer of the jury is $b$ . The checker program will consider your answer correct, if .
输入输出样例
输入 #1
2 100 30 40 10
输出 #1
942477.796077000
输入 #2
4 1 1 9 7 1 4 10 7
输出 #2
3983.539484752
In first sample, the optimal way is to choose the cake number $1$ .
In second sample, the way to get the maximum volume is to use cakes with indices $1$ , $2$ and $4$ .
In second sample, the way to get the maximum volume is to use cakes with indices $1$ , $2$ and $4$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted