POJ 1905 Expanding Rods (二分)

网友投稿 596 2022-08-26

POJ 1905 Expanding Rods (二分)

POJ 1905 Expanding Rods (二分)

Description

Input

The input contains multiple lines. Each line of input contains three non-negative numbers: the initial lenth of the rod in millimeters, the temperature change in degrees and the coefficient of heat expansion of the material. Input data guarantee that no rod expands by more than one half of its original length. The last line of input contains three negative numbers and it should not be processed.

Output

For each line of input, output one line with the displacement of the center of the rod in millimeters with 3 digits of precision.

Sample Input

1000 100 0.000115000 10 0.0000610 0 0.001-1 -1 -1

Sample Output

61.329225.0200.000

题意

木棒受热膨胀后形成弧形,求它的最高点与原来水平之间的距离。

思路

我们假设弧所对应的半径为r,圆心角为2*s,弧长为L,弦长为l。

已知,弧长 L=r∗2s , 且 L=(1+n∗C)∗l

弦长 l=2∗r∗sin(s)

两式消去s可得 L=2∗r∗arcsin(l2∗r)

另外,在图中存在这样的关系: r2−(r−h)2=(l2)2

化简得: r=4h2+l28h

这是一个超越方程,不会解怎么办,试呗!

两个式子合成一个便是

L=(4h2+l2)∗arcsin(4hl4h2+l2)4h

用二分的方法逐一验证,不过二分只适用于单调的函数怎么办,这个函数是这种类型么?

于是,现场画一个图看看

这里假设 l=2 ,绘制的图像范围是 [0,2]

但是因为h的取值只能是 [0,l2]

AC 代码

#include #include#include#define maxx (1<<25)using namespace std;int main(){ double l,c,n; while(~scanf("%lf%lf%lf",&l,&n,&c)) { if(l<0||n<0||c<0)break; double L=(1.0+n*c)*l; double low=0,high=0.5*l,mid; while(high-low>1e-7) { mid=(low+high)*.5; double r=((4.0*mid*mid)+l*l)/(8.0*mid); double as=2.0*r*asin(l/(2.0*r)); if(as>L)high=mid; else if(as

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:POJ 2251 Dungeon Master (BFS)
下一篇:为什么说结对编程实际操作起来很难(结对编程的过程)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~