POJ 1379

模拟退火算法。

随机MAX个点,然后,退火移动,选取距离所有点中最短中最长者即可。理解和我上一篇一样。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <time.h>
using namespace std;
const int MAXN=1010;
const int MAX=50;
const double inf=1e10;
const double eps=1e-3;

struct point {
	double x,y;
};
point p[MAXN]; point tar[MAX];
double best[MAXN];
int n; double ans_dis; point s,tp;  double tmp_dis;
double X,Y;

double getdouble(){
	double ret=((rand()*rand())%1000000)*1.0/1e6;
	return ret;
}
double dist(point &u,point &v){
	return sqrt((u.x-v.x)*(u.x-v.x)+(u.y-v.y)*(u.y-v.y));
}

double work(point &t){
	double ret=inf;
	for(int i=0;i<n;i++){
		double tmp=dist(t,p[i]);
		ret=min(ret,tmp);
	}
	return ret;
}

int main(){
	int cas; bool flag;
	scanf("%d",&cas);
	srand(time(0));
	while(cas--){
		scanf("%lf%lf%d",&X,&Y,&n);
		for(int i=0;i<n;i++){
			scanf("%lf%lf",&p[i].x,&p[i].y);
		}
		for(int i=0;i<MAX;i++){
			tar[i].x=getdouble()*X;
			tar[i].y=getdouble()*Y;
			best[i]=work(tar[i]);
		}
		double T=100;
		for(double t=T;t>eps;t*=0.8){
			for(int i=0;i<MAX;i++){
				for(int j=0;j<30;j++){
					double tmp=getdouble();
					if(rand()&1) tmp*=-1;
					tp.x=tar[i].x+tmp*t;
					tmp=getdouble();
					if(rand()&1) tmp*=-1;
					tp.y=tar[i].y+tmp*t;
					if(tp.y>=0&&tp.y<Y&&tp.x>=0&&tp.x<=X){
						double f=work(tp);
						if(f>best[i]) {
							tar[i]=tp; best[i]=f;
						}
					}
				}
			}
		}
		ans_dis=best[0];
		for(int i=0;i<MAX;i++){
			double fe=best[i];
			if(fe>ans_dis){
				s=tar[i];
				ans_dis=fe;
			}
		}
		printf("The safest point is (%.1lf, %.1lf).\n",s.x,s.y);
	}
	return 0;
}

  

POJ 1379

时间: 2024-11-10 15:47:44

POJ 1379的相关文章

POJ 1379 模拟退火算法

求规定平面上一点到已知点的最小距离最大的点. 模拟退火的流程是,随机构造几组解作为初始解空间,每次对当前解空间进行随机扩展,若发现更优解则替换. 进行的次数由参数人为控制,而随机扩展的幅度也是随着次数逐渐减小的. #include<iostream> #include<cstdio> #include<cstring> #include<queue> #include<cmath> #include<string> #include&

POJ 1379 模拟退火法

Run Away Time Limit: 3000MS   Memory Limit: 65536K Total Submissions: 5631   Accepted: 1728 Description One of the traps we will encounter in the Pyramid is located in the Large Room. A lot of small holes are drilled into the floor. They look complet

POJ 1379 Run Away

题意:有n个陷阱,在X,Y范围内要求出一个点使得这个点到陷阱的最小距离最大. 思路:模拟退火,随机撒入40个点,然后模拟退火随机化移动. (这题poj坑爹,加了srand(time(NULL))不能交G++,不加srand(time(NULL))又会WA,交了C++不能用acos(-1),只能用3.1415926代替,真是坑爹.) #include<algorithm> #include<cstdio> #include<cmath> #include<cstri

POJ 1379 模拟退火

模拟退火算法,很久之前就写过一篇文章了.双倍经验题(POJ 2420) 题意: 在一个矩形区域内,求一个点的距离到所有点的距离最短的那个,最大. 这个题意,很像二分定义,但是毫无思路,也不能暴力枚举,那就模拟退火. #include <stdio.h> #include <math.h> #include <algorithm> using namespace std; const int maxn = 1005; int X,Y,M; int Kase; struct

POJ 1379 Run Away 模拟退火

一开始写了一发很快的,发现一会能过一会不能,貌似有点悬,毕竟是随机算法. 后来重写了一发迭代5遍的,基本上把把AC了= = 模拟退火果然是一种不是很靠谱的算法. #include <cstdio> #include <cstring> #include <algorithm> #include <cmath> #include <cstdlib> #include <ctime> using namespace std; const

poj 1379 Run Away 模拟退火 难度:1

Run Away Time Limit: 3000MS   Memory Limit: 65536K Total Submissions: 6482   Accepted: 1993 Description One of the traps we will encounter in the Pyramid is located in the Large Room. A lot of small holes are drilled into the floor. They look complet

POJ 1379 Run Away 【基础模拟退火】

题意:找出一点,距离所有所有点的最短距离最大 二维平面内模拟退火即可,同样这题用最小圆覆盖也是可以的. Source Code: //#pragma comment(linker, "/STACK:16777216") //for c++ Compiler #include <stdio.h> #include <iostream> #include <fstream> #include <cstring> #include <cm

POJ 1379 (随机算法)模拟退火

题目大意: 给定一堆点,找到一个点的位置使这个点到所有点中的最小距离最大 这里数据范围很小,精度要求也不高,我们这里可以利用模拟退火的方法,随机找到下一个点,如果下一个点比当前点优秀就更新当前点 参考:http://www.cnblogs.com/heaad/archive/2010/12/20/1911614.html http://wenku.baidu.com/view/0c6b5df5f61fb7360b4c65a9.html 1 #include <cstdio> 2 #includ

【转】[专题学习][计算几何]

原文地址:http://www.cnblogs.com/ch3656468/archive/2011/03/02/1969303.html 基本的叉积.点积和凸包等东西就不多说什么了,网上一搜一大堆,切一些题目基本熟悉了就差不多了. 一些基本的题目可以自己搜索,比如这个blog:http://blog.sina.com.cn/s/blog_49c5866c0100f3om.html 接下来,研究了半平面交,思想方法看07年朱泽园的国家队论文,模板代码参考自我校大牛韬哥: http://www.o