标签:style http color os io width
题意:给定一个铁棒,如图中加热会变成一段圆弧,长度为L′=(1+nc)l,问这时和原来位置的高度之差
思路:画一下图可以很容易推出公式,设圆弧扇形部弧度r,那么可以计算出铁棒长度为lr/sin(r)这个公式在[0, pi/2]是单调递增的,所以可以用二分法去求解
要注意的一点是最后答案计算过程中带入mid,之前是带入x(二分的左边值),可实际上x是可能等于0的,而带入mid,由于是double型,所以mid实际上表示是一个非常趋近0的数字,而不是0.
代码:
#include <cstdio> #include <cstring> #include <cmath> const double pi = acos(-1.0); double l, n, c; double cal(double r) { return l / sin(r) * r; } int main() { while (~scanf("%lf%lf%lf", &l, &n, &c)) { if (l < 0) break; double x = 0, y = pi / 2, lx = (1 + n * c) * l, m; for (int i = 0; i < 100; i++) { m = (x + y) / 2; if (cal(m) < lx) x = m; else y = m; } printf("%.3lf\n", l / 2 / sin(m) * (1 - cos(m))); } return 0; }
UVA 10668 - Expanding Rods(数学+二分),布布扣,bubuko.com
UVA 10668 - Expanding Rods(数学+二分)
标签:style http color os io width
原文地址:http://blog.csdn.net/accelerator_/article/details/38072075