HDU-1071,The area(求面积水题)

简介: HDU-1071,The area(求面积水题)

Problem Description:


Ignatius bought a land last week, but he didn't know the area of the land because the land is enclosed by a parabola and a straight line. The picture below shows the area. Now given all the intersectant points shows in the picture, can you tell Ignatius the area of the land?


Note: The point P1 in the picture is the vertex of the parabola.

网络异常,图片无法展示
|




Input:


The input contains several test cases. The first line of the input is a single integer T which is the number of test cases. T test cases follow.

Each test case contains three intersectant points which shows in the picture, they are given in the order of P1, P2, P3. Each point is described by two floating-point numbers X and Y(0.0<=X,Y<=1000.0).


Output:


For each test case, you should output the area of the land, the result should be rounded to 2 decimal places.


Sample Input:


2


5.000000 5.000000


0.000000 0.000000


10.000000 0.000000


10.000000 10.000000


1.000000 1.000000


14.000000 8.222222


Sample Output:


33.33


40.69


Hint


For float may be not accurate enough, please use double instead of float.


程序代码:


#include<stdio.h>
int main()
{
  double x1,x2,x3,y1,y2,y3;
  double k,t,a,b,c,s1,s2;
  int n;
  while(scanf("%d",&n)!=EOF)
  {
    while(n--)
    {
      scanf("%lf %lf %lf %lf %lf %lf",&x1,
        &y1,&x2,&y2,&x3,&y3);
      k=(y3-y2)/(x3-x2);
      t=y3-k*x3;
      a=(y2-y1)/((x1-x2)*(x1-x2));
      b=-2*x1*a;
      c=y1-a*x1*x1-b*x1;
      s1=1.0/3*a*x2*x2*x2+1.0/2*(b-k)*x2*x2+(c-t)*x2;
      s2=1.0/3*a*x3*x3*x3+1.0/2*(b-k)*x3*x3+(c-t)*x3;
      printf("%.2f\n",s2-s1);
    }
  }
  return 0;
}



相关文章
|
算法
poj 2479 Maximum sum(求最大子段和的延伸)
看完最大连续子段和 的 dp算法 这个很容易理解,我用dplift[i]保存第1到第i个之间的最大子段和,dpright[i]保存第i到第n个之间的最大子段和,最终结果就是dplift[i]+dpright[i+1]中最大的一个。
50 0
|
机器学习/深度学习
HDU2376——Average distance(思维+树形DP)
HDU2376——Average distance(思维+树形DP)
91 0
AcWing 613. 面积
AcWing 613. 面积
60 0
AcWing 613. 面积
|
机器学习/深度学习
HDOJ(HDU) 2524 矩形A + B(推导公式、)
HDOJ(HDU) 2524 矩形A + B(推导公式、)
99 0
HDOJ(HDU) 2524 矩形A + B(推导公式、)
|
测试技术
HDOJ(HDU) 1859 最小长方形(水题、、)
HDOJ(HDU) 1859 最小长方形(水题、、)
78 0
HDOJ 2076 夹角有多大(题目已修改,注意读题)
HDOJ 2076 夹角有多大(题目已修改,注意读题)
103 0
|
Java
[LeetCode]Max Area of Island 岛屿的最大面积
链接:https://leetcode.com/problems/max-area-of-island/description/难度:Easy题目:695.
872 0