Simpson公式的应用(HDU 1724/ HDU 1071)
Simpson's rule - Wikipedia, the free encyclopedia
利用这个公式,用二分的方法来计算积分。
#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath> using namespace std; const double EPS = 1e-;
double A, B, C, P, Q; template<class T> T sqr(T x) { return x * x;}
inline double cal(double x) { return A * sqr(x) + (B - P) * x + C - Q;}
inline double sps(double l, double r) { return (cal(l) + cal(r) + * cal((l + r) / )) / * (r - l);} double work(double l, double r) {
//cout << l << ' ' << r << endl;
double ans = sps(l, r), m = (l + r) / ;
if (fabs(ans - sps(l, m) - sps(m, r)) < EPS) return ans;
else return work(l, m) + work(m, r);
} int main() {
int T;
double l, r;
double x[], y[];
cin >> T;
while (T--) {
for (int i = ; i < ; i++) cin >> x[i] >> y[i];
double p[], q[], d[];
for (int i = ; i < ; i++) p[i] = sqr(x[i]) - sqr(x[i + ]), q[i] = x[i] - x[i + ], d[i] = y[i] - y[i + ];
A = (q[] * d[] - q[] * d[]) / (p[] * q[] - p[] * q[]);
B = (p[] * d[] - p[] * d[]) / (p[] * q[] - p[] * q[]);
C = y[] - B * x[] - A * sqr(x[]);
//cout << A << ' ' << B << ' ' << C << endl;
P = (y[] - y[]) / (x[] - x[]);
Q = y[] - P * x[];
//cout << P << ' ' << Q << endl;
printf("%.2f\n", work(x[], x[]));
}
return ;
}
#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath> using namespace std; const double EPS = 1e-;
double A, B; template<class T> T sqr(T x) { return x * x;}
inline double cal(double x) { return * B * sqrt( - sqr(x) / sqr(A));}
inline double sps(double l, double r) { return (cal(l) + cal(r) + * cal((l + r) / )) / * (r - l);} double work(double l, double r) {
//cout << l << ' ' << r << endl;
double ans = sps(l, r), m = (l + r) / ;
if (fabs(ans - sps(l, m) - sps(m, r)) < EPS) return ans;
else return work(l, m) + work(m, r);
} int main() {
int T;
double l, r;
cin >> T;
while (T-- && cin >> A >> B >> l >> r) printf("%.3f\n", work(l, r));
return ;
}
之后还有题会继续更新。
UPD:
就是因为见过这题,所以才学这个公式的。1y~
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <cmath> using namespace std; double coe[][];
const double EPS = 1e-; int k;
double cal(double x, double *c) {
double ret = c[];
for (int i = ; i <= k; i++) ret *= x, ret += c[i];
return ret;
} inline double cal(double x, double *p, double *q) { return cal(x, p) / cal(x, q);}
inline double cal(double x, double y, double *p, double *q) { return max(cal(x, p, q) - y, 0.0);}
inline double simpson(double y, double l, double r, double *p, double *q) { return (cal(l, y, p, q) + cal(r, y, p, q) + * cal((l + r) / , y, p, q)) * (r - l) / ;} inline double getpart(double y, double l, double r, double *p, double *q) {
double sum = simpson(y, l, r, p, q);
//cout << l << ' ' << r << ' ' << sum << endl;
if (fabs(sum - simpson(y, l, (l + r) / , p, q) - simpson(y, (l + r) / , r, p, q)) < EPS) return sum;
return getpart(y, l, (l + r) / , p, q) + getpart(y, (l + r) / , r, p, q);
} inline double getarea(double y, double l, double r, double *p, double *q) {
double ret = , d = (r - l) / ;
for (int i = ; i < ; i++) {
ret += getpart(y, l + d * i, l + d * (i + ), p, q);
}
return ret;
} double dc2(double l, double r, double a, double w) {
double m;
while (r - l > EPS) {
m = (l + r) / 2.0;
//cout << m << ' ' << getarea(m, 0, w, coe[0], coe[1]) - getarea(m, 0, w, coe[2], coe[3]) << endl;
if (getarea(m, , w, coe[], coe[]) - getarea(m, , w, coe[], coe[]) > a) l = m;
else r = m;
}
return l;
} int main() {
//freopen("in", "r", stdin);
//freopen("out", "w", stdout);
double w, d, a;
while (cin >> w >> d >> a >> k) {
for (int i = ; i < ; i++) for (int j = ; j <= k; j++) cin >> coe[i][j];
for (int i = ; i < ; i++) reverse(coe[i], coe[i] + k + );
//cout << getarea(-5.51389, 0, w, coe[0], coe[1]) - getarea(-5.51389, 0, w, coe[2], coe[3]) << endl;
//cout << cal(3, coe[0], coe[1]) << endl;
printf("%.5f\n", -dc2(-d, , a, w));
}
return ;
}
——written by Lyon
Simpson公式的应用(HDU 1724/ HDU 1071)的更多相关文章
- HDU 1724 Ellipse 【自适应Simpson积分】
Ellipse Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Sub ...
- hdu 1724 Ellipse simpson积分
/* hdu 1724 Ellipse simpson积分 求椭圆的部分面积 simpson积分法 http://zh.wikipedia.org/zh-tw/%E8%BE%9B%E6%99%AE%E ...
- HDU 1724 Ellipse 自适应simpson积分
simpson公式是用于积分求解的比较简单的方法(有模板都简单…… 下面是simpson公式(很明显 这个公式的证明我并不会…… (盗图…… 因为一段函数基本不可能很规则 所以我们要用自适应积分的方法 ...
- HDU 1724 Ellipse (自适应辛普森积分)
题目链接:HDU 1724 Problem Description Math is important!! Many students failed in 2+2's mathematical tes ...
- HDU 1724:Ellipse(自适应辛普森积分)
题目链接 题意 给出一个椭圆,问一个[l, r] 区间(蓝色区域)的面积是多少. 思路 自适应辛普森积分 具体一些分析如上. 很方便,套上公式就可以用了. 注意 eps 的取值影响了跑的时间,因为决定 ...
- HDU 1724 自适应辛普森法
//很裸的积分题,直接上模板 #include<stdio.h> #include<math.h> int aa, bb; //函数 double F(double x){ - ...
- csu 1806 & csu 1742 (simpson公式+最短路)
1806: Toll Time Limit: 5 Sec Memory Limit: 128 MB Special JudgeSubmit: 256 Solved: 74[Submit][Sta ...
- simpson公式求定积分(模板)
#include<cstdio> #include<cmath> #include <algorithm> using namespace std; double ...
- HDU - 2222,HDU - 2896,HDU - 3065,ZOJ - 3430 AC自动机求文本串和模式串信息(模板题)
最近正在学AC自动机,按照惯例需要刷一套kuangbin的AC自动机专题巩固 在网上看过很多模板,感觉kuangbin大神的模板最为简洁,于是就选择了用kuangbin大神的模板. AC自动机其实就是 ...
随机推荐
- Git同账号多平台配置
最近工作中使用到了Git,虽然以前学习过,但是已经忘的差不多了,遂将本次配置过程整理成笔记以备忘 生成公钥 ssh-keygen -t rsa -C "gana10007@163.com&q ...
- Boost Asio教程集合
http://zh.highscore.de/cpp/boost/ 第七章 https://mmoaay.gitbooks.io/boost-asio-cpp-network-programming- ...
- oracle基本认识
概要图 1. 环境搭建 1.1 Oracle的安装 数据库的三个常用的用户及默认密码sys:change_on_installsystem:managerscott:tiger Oracle客户端: ...
- checkbox的全选,取消全选,获得选中值
<html> <head> <title>jq全选以及获得选中项的值</title> <meta charset="utf-8" ...
- JZOJ 平衡的子集
Description 夏令营有N个人,每个人的力气为M(i).请大家从这N个人中选出若干人,如果这些人可以分成两组且两组力气之和完全相等,则称为一个合法的选法,问有多少种合法的选法? Input 第 ...
- Codeforces Round #275 (Div. 2) A. Counterexample【数论/最大公约数】
A. Counterexample time limit per test 1 second memory limit per test 256 megabytes input standard in ...
- Vue项目根据不同运行环境打包项目
前提 项目是直接通过 vue-cli脚手架 生成的: 假设在项目开发中,分为三个环境 -- · 测试环境· 预生产环境· 生产环境 每个环境的接口地址都是不同的,而 vue-cli 给出的环境只有 d ...
- AC自动机fail树小结
建议大家学过AC自动机之后再来看这篇小结 fail树就是讲fail指针看做一条边连成的树形结构 fail指针在AC自动机中的含义是指以x为结尾的后缀在其他模式串中所能匹配的最长前缀的长度 所以在模式串 ...
- oracle-Immediate
从shutdown immediate命令发布起,禁止建立任何新的oracle连接 未提交的事务被回退.因此,处于一个事务中间的用户将失去所有未提交的劳动成果. oracle不等待客户断开连接.任何未 ...
- Kubernetes1.4即将发布
(一)发布历史 Kubernetes 1.0 - 2015年7月发布 Kubernetes 1.1 - 2015年11月发布 Kubernetes 1.2 - 2016年3月发布 Kubernetes ...