The WHU ACM Team has a big cup, with which every member drinks water. Now, we know the volume of the water in the cup, can you tell us it height?

The radius of the cup's top and bottom circle is known, the cup's height is also known.

InputThe input consists of several test cases. The first line of input contains an integer T, indicating the num of test cases. 
Each test case is on a single line, and it consists of four floating point numbers: r, R, H, V, representing the bottom radius, the top radius, the height and the volume of the hot water.

Technical Specification

1. T ≤ 20. 
2. 1 ≤ r, R, H ≤ 100; 0 ≤ V ≤ 1000,000,000. 
3. r ≤ R. 
4. r, R, H, V are separated by ONE whitespace. 
5. There is NO empty line between two neighboring cases.

OutputFor each test case, output the height of hot water on a single line. Please round it to six fractional digits.Sample Input

1
100 100 100 3141562

Sample Output

99.999024

思路:可验证+单调性,二分答案,代码如下:
#define exp 1e-9

double r, R, V, H;

double calculateVolume(double height) {
double nr = height / H * (R - r) + r;
return acos(-1.0) / * (r * r + r * nr + nr * nr) * height;
} int main() {
int T;
scanf("%d",&T);
while(T--) {
scanf("%lf%lf%lf%lf", &r, &R, &H, &V);
double left = 0.0, right = 100.0, mid;
while(right - left > exp) {
mid = (right + left) / ;
double tmp = calculateVolume(mid);
if(fabs(tmp - V) <= exp)
break;
if(tmp > V)
right = mid - exp;
else
left = mid + exp;
}
printf("%.6lf\n", right);
}
return ;
}

小结:带精度的问题都是上下限之差小于这个精度为while条件,(解方程和这一题

最新文章

  1. javascript中原型(prototype)与原型链
  2. MvvmLight ToolKit 教程
  3. java String与Byte[]和String 与InputStream转换时注意编码问题。。。
  4. codevs 3186 队列练习2
  5. .Net 项目常见疑难杂症
  6. VS2010中使用QtOpenGL出现 unresolved external symbol __imp__glClear@4 referenced in function之类的错误
  7. Dungeon Game 解答
  8. python中的那些“神器”
  9. LINQ to Entities 不识别方法的解决方案
  10. java实现——006重建二叉树
  11. vue错误和解决方法
  12. JVM学习②
  13. 免费试用MongoDB云数据库 (MongoDB Atlas)教程
  14. linux更好看的top界面htop
  15. react表单的一些小例子
  16. gcc4.9.1新特性
  17. 码云 使用 汉化 GitHub
  18. Android Studio原生库创建示例
  19. PeekMessage、GetMessage的区别
  20. tp修改的写法

热门文章

  1. python3.8+PySimpleGUI+进度条代码大全
  2. Nexus-vPC与FHRP
  3. 牛客-Y 老师的乐高小镇
  4. vs code插件大全
  5. Dart语言学习(十四) Dart泛型
  6. C语言笔记 12_可变参数&amp;内存管理&amp;命令行参数
  7. 什么是CSRF攻击?如何避免?
  8. selenium webdriver 实现百度贴吧自动签到
  9. Java基础 -1.4
  10. SAVE 、BGSAVE和BGREWRITEAOF执行区别