hdu3007 zoj1450最小圆覆盖

#include<iostream>
#include<cmath>
#include<cstdio>
#include<cstring>
#define maxn 1005
using namespace std; 

struct tpoint
{
	double x,y;
	tpoint operator -(const tpoint &a) const
	{
		tpoint p1;
		p1.x=x-a.x;
		p1.y=y-a.y;
		return p1;
	} 
};
struct tcircle
{
	double r;
	tpoint centre;
};
struct ttriangle
{
	tpoint t[3];
};
tcircle c;
tpoint a[maxn];
double distances(tpoint p1,tpoint p2)
{
	tpoint p3;
	p3.x=p2.x-p1.x;
	p3.y=p2.y-p1.y;
	return sqrt(p3.x*p3.x+p3.y*p3.y);
}
double trianglearea(ttriangle t)
{
	tpoint p1,p2;
	p1=t.t[1]-t.t[0];
	p2=t.t[2]-t.t[0];
	return fabs(p1.x*p2.y-p1.y*p2.x)/2;
}
tcircle circumcircleoftriangle(ttriangle t)
{
	tcircle tmp;
	double a,b,c,c1,c2;
	double xa,xb,xc,ya,yb,yc;
	a = distances( t.t[0] , t.t[1] );
	b=distances(t.t[1],t.t[2]);
	c=distances(t.t[2],t.t[0]);
	tmp.r=a*b*c/trianglearea(t)/4;
	xa=t.t[0].x;ya=t.t[0].y;
	xb=t.t[1].x;yb=t.t[1].y;
	xc=t.t[2].x;yc=t.t[2].y;
	c1=(xa*xa+ya*ya-xb*xb-yb*yb)/2;
	c2=(xa*xa+ya*ya-xc*xc-yc*yc)/2;
	tmp.centre.x=(c1*(ya-yc)-c2*(ya-yb))/
	((xa-xb)*(ya-yc)-(xa-xc)*(ya-yb));
	tmp.centre.y=(c1*(xa-xc)-c2*(xa-xb))/
	((ya-yb)*(xa-xc)-(ya-yc)*(xa-xb));
	return tmp;
}
tcircle mincircle2(int tce,ttriangle ce)
{
	tcircle tmp;
	if(tce == 0) tmp.r=-2;
	else if(tce == 1)
	{
		tmp.centre=ce.t[0];
		tmp.r=0;
	}
	else if(tce == 2)
	{
		tmp.r=distances(ce.t[0],ce.t[1])/2;
		tmp.centre.x=(ce.t[0].x+ce.t[1].x)/2;
		tmp.centre.y=(ce.t[0].y+ce.t[1].y)/2;
	}
	else if(tce == 3)
	tmp=circumcircleoftriangle(ce);
	return tmp;
}
void mincircle(int t,int tce,ttriangle ce)
{
	int i,j;
	tpoint tmp;
	c=mincircle2(tce,ce);
	if(tce == 3) return ;
	for(i=1;i<=t;i++)
	{
		if(distances(a[i],c.centre)>c.r)
		{
			ce.t[tce]=a[i];
			mincircle(i-1,tce+1,ce);
			tmp=a[i];
			for(j = i;j>=2;j--)
			{
				a[j]=a[j-1];
			}
			a[1]=tmp;
		}
	}
}
void run(int n)
{
	ttriangle ce;
	int i;
	mincircle(n,0,ce);
	printf("%.2lf %.2lf %.2lf\n",c.centre.x,c.centre.y,c.r);
}
int main()
{
	int n;
	while(scanf("%d",&n)!=EOF && n)
	{
		for(int i=1;i<=n;i++)
		scanf("%lf%lf",&a[i].x,&a[i].y);
		run(n);
	}
	return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值