码迷,mamicode.com
首页 > 其他好文 > 详细

UVA 10668 - Expanding Rods(数学+二分)

时间:2014-07-24 10:44:30      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:style   http   color   os   io   width   

UVA 10668 - Expanding Rods

题目链接

题意:给定一个铁棒,如图中加热会变成一段圆弧,长度为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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!