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

函数求值

时间:2018-06-11 21:58:42      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:lse   tps   误差   scanf   const   https   names   二分   name   

https://vjudge.net/contest/231312#status/1751151850/D/0/

第一道函数求值问题,这一道是单调函数求零点问题,用二分法

在这里学到了1,怎么输入e^x次方,用exp()函数,2、定义一个允许的误差

#include<iostream>
#include<stdio.h>
#include<string.h>
#include<cmath>
typedef long long ll;
using namespace std;
int p,q,r,s,t,u;
const double eps=1e-7;
//p?e?x + q?sin(x) + r?cos(x) + s?tan(x) + t?x2 + u = 0
double f(double x)
{
    return p*exp(-x)+q*sin(x)+r*cos(x)+s*tan(x)+t*x*x+u;//单调递减函数
}
int main()
{
    while(scanf("%d%d%d%d%d%d",&p,&q,&r,&s,&t,&u)!=EOF)
    {
        double l=0,r=1;
        if(f(0)*f(1)>0)
            printf("No solution\n");
        else
        {
            while(abs(f(r)-f(l))>eps)
            {
                double mid=(r+l)/2;
                if(f(mid)<0)//也可以写成if(f(l)*f(mid)<=0)
                    r=mid;
                else
                    l=mid;
            }
            printf("%.4lf\n",(l+r)/2);
        }
    }
    return 0;
}

  

函数求值

标签:lse   tps   误差   scanf   const   https   names   二分   name   

原文地址:https://www.cnblogs.com/caijiaming/p/9169083.html

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