首页 > 代码库 > hdoj 2199 Can you solve this equation? 【二分枚举】
hdoj 2199 Can you solve this equation? 【二分枚举】
题意:给出一个数让你求出等于这个数的x
策略:如题。因为整个式子是单调递增的,所以可以用二分。
要注意到精度.
代码:
#include <stdio.h> #include <string.h> #include <math.h> #define eps 1e-10 #define f(x) 8*pow(x, 4) + 7*pow(x, 3) + 2*pow(x, 2) + 3*x int main() { int t; double n; scanf("%d", &t); while(t --){ scanf("%lf", &n); n-=6; double max = f(100); if(n<0||n>max){ printf("No solution!\n"); continue; } double left, right, mid; left = 0; right = 100; while(right-left > 1e-7){ //精度要小于1e-7, mid = (left+right)/2; double temp = f(mid); if(temp < n) left = mid+1e-7; else right = mid; } printf("%0.4lf\n", left); } return 0; }
hdoj 2199 Can you solve this equation? 【二分枚举】
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。