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

poj 1905Expanding Rods

时间:2014-07-30 00:47:22      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   div   amp   ios   

 1 /*
 2   二分 + 几何
 3   弧长L, 圆半径R, 弧度 q, L=R*q;
 4   二分: 弧度(0~PI) 或者 高度(L/2~L) 
 5 */
 6 #include<cstdio> 
 7 #include<iostream>
 8 #include<cmath>
 9 using namespace std;
10 const double PI = acos(-1.0);
11 double L, L1, T, C, R, Q;
12 
13 int main(){
14    
15    while(scanf("%lf%lf%lf", &L, &T, &C) && (L!=-1 || T!=-1 || C!=-1)){
16       L1 = (1+T*C)*L;
17       double ld=0.0, rd=PI, tmp;
18       Q = (ld+rd)/2; 
19       R = L/2/sin(Q);
20       while(fabs(tmp = R*2*Q-L1)>1e-8){
21          if(tmp>0) rd=Q;
22          else ld=Q;
23          Q=(ld+rd)/2;
24          R = L/2/sin(Q);
25       }
26       printf("%.3lf\n", R-sqrt(R*R - (L/2)*(L/2)));
27    } 
28    return 0;
29 }

 

poj 1905Expanding Rods,布布扣,bubuko.com

poj 1905Expanding Rods

标签:style   blog   color   os   io   div   amp   ios   

原文地址:http://www.cnblogs.com/hujunzheng/p/3876698.html

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