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

hdu 5065 数学题

时间:2014-10-17 22:03:02      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:blog   io   os   ar   for   sp   2014   log   amp   

#include<iostream>
#include<cmath>
#include<cstdio>
using namespace std;
int A,B,y;
double ans=0;
double inline f(double x)
{
   return A*x*x-(B*sin(x)+y);
}
double inline absf(double x)
{
    if(f(x)<0)return -f(x);
    return f(x);
}
bool findans(double l,double r)         //求绝对值后函数必然先减后增。三分
{
    if(f(l)*f(r)>0)return 0;
    while(r-l>0.00000001)       //注意精度
    {
        double mid1=l+(r-l)/3,mid2=r-(r-l)/3;
        if(absf(mid1)<=absf(mid2))
            r=mid2;
        else
           l=mid1;
    }
    ans=l;
    return 1;
}
int main()
{
   int T;
   scanf("%d",&T);
   while(T--)
   {
      scanf("%d%d%d",&A,&B,&y);
      bool marks=0;ans=0;
      for(double x=0;x<50;x=x+0.3)
      {
          if(findans(x,x+0.3))
          {
              marks=1;break;
          }
      }
      if(marks)
          printf("%.5lf\n",ans);
      else
          printf("error\n");
   }
   return 0;
}

hdu 5065 数学题

标签:blog   io   os   ar   for   sp   2014   log   amp   

原文地址:http://blog.csdn.net/u011498819/article/details/40190953

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