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

HDU 1071 The area (数学定积分)

时间:2016-06-21 20:50:32      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

题意:求阴影部分面积。

析:没什么可说的,就是一个普通的定积分。

代码如下:

#include <cstdio>
#include <iostream>

using namespace std;

int main(){
    int T;    cin >> T;
    double x0, y0, x1, y1, x2, y2, k, b, a, c, h, s;
    while(T--){
        scanf("%lf %lf %lf %lf %lf %lf",&x0, &y0, &x1, &y1, &x2, &y2);
        k = (y2-y1) / (x2-x1);
        b = y1 - k*x1;
        h = x0;
        c = y0;
        a = (y1-c) / ((x1-h)*(x1-h));
        s = (a*x2*x2*x2/3-(2*a*h+k)*x2*x2/2+(a*h*h+c-b)*x2)-(a*x1*x1*x1/3-(2*a*h+k)*x1*x1/2+(a*h*h+c-b)*x1);
        printf("%.2lf\n", s);
    }
    return 0;
}

 

HDU 1071 The area (数学定积分)

标签:

原文地址:http://www.cnblogs.com/dwtfukgv/p/5604880.html

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