RPFS(RP First Search) 模拟退火算法 未完

本文介绍了一种使用模拟退火算法求解费马点问题的方法。通过不断迭代更新位置来寻找使各点距离之和最小化的费马点坐标。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

POJ 2420

求费马点

代码来自网络

#include<cmath>
#include<cstdio>
const double inf=1e9;
const int N=100;
const double threshold=1e-7,delta=0.98,inital_temperature=100;
const double d[4][2]={{0,1},{1,0},{0,-1},{-1,0}};
int n;
struct Point {
	double x,y;
};
Point p[N];
inline double sqr(const double x) {
	return x*x;
}
inline double dist(const Point a,const Point b) {
	return sqrt(sqr(a.x-b.x)+sqr(a.y-b.y));
}
inline double getsum(const Point x) {
	double ret=0;
	for(int i=0;i<n;i++) {
		ret+=dist(x,p[i]);
	}
	return ret;
}
int main() {
	scanf("%d",&n);
	for(int i=0;i<n;i++) {
		scanf("%lf%lf",&p[i].x,&p[i].y);
	}
	Point nowp=p[0];
	double ans=getsum(nowp),t=inital_temperature;
	while(t>threshold) {
		bool finished=false;
		while(!finished) {
			finished=true;
			for(int i=0;i<4;i++) {
				Point nextp;
				nextp.x=nowp.x+d[i][0]*t;
				nextp.y=nowp.y+d[i][1]*t;
				if(getsum(nextp)<ans) {
					ans=getsum(nextp);
					nowp=nextp;
					finished=false;
				}
			}
		}
		t*=delta;
	}
	printf("%.f\n",ans);
}


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值