博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 2199 Can you solve this equation?【二分查找】
阅读量:5134 次
发布时间:2019-06-13

本文共 1584 字,大约阅读时间需要 5 分钟。

解题思路:给出一个方程 8*x^4 + 7*x^3 + 2*x^2 + 3*x + 6 == Y,求方程的解。 首先判断方程是否有解,因为该函数在实数范围内是连续的,所以只需使y的值满足f(0)<=y<=f(100),就一定能找到该方程的解,否则就无解。 然后是求解过程, 假设一个区间[a,b],mid=(a+b)/2,如果f(a)*f(b)<0,那么函数f(x)在区间[a,b]至少存在一个零点,如果f(a)<0,说明0点在其右侧,那么将a的值更新为当前mid的值,如果f(a)>0,说明0点在其左侧,将b的值更新为mid的值。画出图像更好分析。

Can you solve this equation?

Time Limit: 2000/1000 MS (Java/Others)  

  Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 9490    Accepted Submission(s): 4382

Problem Description

Now,given the equation 8*x^4 + 7*x^3 + 2*x^2 + 3*x + 6 == Y,can you find its solution between 0 and 100; Now please try your lucky.  

Input The first line of the input contains an integer T(1<=T<=100) which means the number of test cases. Then T lines follow, each line has a real number Y (fabs(Y) <= 1e10);  

Output For each test case, you should just output one real number(accurate up to 4 decimal places),which is the solution of the equation,or “No solution!”,if there is no solution for the equation between 0 and 100.  

Sample Input

2

100

-4  

Sample Output

1.6152

No solution!

#include
#include
double f(double x){ return 8*x*x*x*x+7*x*x*x+2*x*x+3*x+6;}int main(){ int ncase; double y,ans,left,right,mid; scanf("%d",&ncase); while(ncase--) { scanf("%lf",&y); ans=0; left=0; right=100; if(f(0)<=y&&y<=f(100)) { while(right-left>0.000000001) { { mid=(left+right)*0.5; ans=f(mid); if(ans-y<0) left=mid; else right=mid; } } printf("%.4lf\n",mid); } else printf("No solution!\n"); }}

  

 

转载于:https://www.cnblogs.com/wuyuewoniu/p/4181477.html

你可能感兴趣的文章
ob_start()函数
查看>>
【JS笔记】5.1 Object类型
查看>>
【BZOJ4025】二分图(可撤销并查集+线段树分治)
查看>>
uml的图与代码的转换——类图
查看>>
吞吐量(TPS)、QPS、并发数、响应时间(RT)概念
查看>>
MVVM 下 ContextMenu的命令绑定
查看>>
GIS基础软件及操作(五)
查看>>
SQLSERVER使用密码加密备份文件以防止未经授权还原数据库
查看>>
C#不登录电脑启动程序
查看>>
ASP.NET缓存中Cache过期的三种策略
查看>>
6天通吃树结构—— 第一天 二叉查找树
查看>>
理解C# 4 dynamic(1) - var, object, dynamic的区别以及dynamic的使用
查看>>
Windows 8实例教程系列 - 布局控制
查看>>
章节2:SQL之多表连接
查看>>
silverlight下多线程处理
查看>>
如何使用ITEXTSHARP将HTML代码字符串写进PDF
查看>>
git bash 出现vim的时候怎么退出
查看>>
React Native开发之IDE(Atom+Nuclide)安装,运行,调试
查看>>
[10月4日的脚本] 获取Office365邮箱文件夹的权限
查看>>
PHP压缩文件操作
查看>>