木其网络科技专业程序员代写http://www.xmsydw.com
程序员学历擅长经验网店链接
apenny硕士ASP.NET PHP 电子 通信设计 图像 编程 网络5年进入店铺
zheng_qianqian本科C语言 C++面向对象 Java3年进入店铺
guoguanl本科Java Web项目 JSP Hibernate Struts Mysql4年进入店铺

hdu 1115 Lifting the Stone (求重心)

#include<iostream>
#include<iomanip>
using namespace std;
typedef struct point
{
    double x,y;
    point(double x=0.0,double y=0.0):x(x),y(y){}
}vector;
point p[1000010],c;
vector operator - (point a,point b) {return vector(a.x-b.x,a.y-b.y);}
point operator + (point a,point b) {return point(a.x+b.x,a.y+b.y);}
point operator / (point a,int b) {return point(a.x/b,a.y/b);}
point operator * (point a,double b) {return point(a.x*b,a.y*b);}
double cross(vector a,vector b)
{
    return a.x*b.y-a.y*b.x;
}
double area2(point a,point b,point c) {return cross(b-a,c-a);}
int main()
{
    int i,t,n;
    double s,m;
    point tt;
    cin>>t;
    while(t--)
    {
        cin>>n;
        s=0.0;tt.x=0.0;tt.y=0.0;
        for(i=0;i<n;i++)
        {
            cin>>p[i].x>>p[i].y;
        }
        for(i=2;i<n;i++)
        {
            m=0.5*area2(p[0],p[i-1],p[i]);s+=m; //三角形的质量与面积成正比
            c=(p[0]+p[i]+p[i-1])/3; //三角形的重心
            tt=tt+(c*m);
        }
        tt=tt/s;
        cout<<fixed<<setprecision(2)<<tt.x<<" "<<fixed<<setprecision(2)<<tt.y<<endl;
    }
    return 0;
}

posted @ 2013-06-11 18:20  C语言程序  阅读(198)  评论(0编辑  收藏  举报
木其网络科技专业程序员代写http://www.xmsydw.com
程序员学历擅长经验网店链接
apenny硕士ASP.NET PHP 电子 通信设计 图像 编程 网络5年进入店铺
zheng_qianqian本科C语言 C++面向对象 Java3年进入店铺
guoguanl本科Java Web项目 JSP Hibernate Struts Mysql4年进入店铺