博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CF2C Commentator problem
阅读量:5809 次
发布时间:2019-06-18

本文共 1486 字,大约阅读时间需要 4 分钟。

不同于模拟退火的一种优化算法

我本来一看到这道题就打了个模拟退火,但是死活模拟不对,样例死活过完就是重心。

翻题解发现可以用向四周的步长移动来求出最优解。不知道这叫什么名字但肯定不是模拟退火。

算法的思想是这样的:

给出4个方向上下左右,然后初始化步长,如果当前新答案比老答案好就更新这个答案,否则步长变短一半。步长变为0停止。

算出来的就是答案。。。

代码:

#include
#include
#include
const double eps = 1e-6;const int dx[] = {0, 1, -1, 0, 0};const int dy[] = {0, 0, 0, 1, -1};struct Circle{ int x, y, r;} cir[4];double ansx, ansy, ans;double dist(double x, double y, double xx, double yy){ return sqrt((x - xx) * (x - xx) + (y - yy) * (y - yy));}double cal(double x, double y){ double res = 0; double g[4]; for(int i = 1; i <= 3; i++) g[i] = dist(x, y, cir[i].x, cir[i].y) / cir[i].r; res += (g[1] - g[2]) * (g[1] - g[2]); res += (g[2] - g[3]) * (g[2] - g[3]); res += (g[3] - g[1]) * (g[3] - g[1]); return res / 3;}int main(){ srand(19260817); for(int i = 1; i <= 3; i++) scanf("%d%d%d", &cir[i].x, &cir[i].y, &cir[i].r); ansx = (cir[1].x + cir[2].x + cir[3].x) / 3.0; ansy = (cir[1].y + cir[2].y + cir[3].y) / 3.0; ans = cal(ansx, ansy); double T = 1; while(T > eps) { int dir = -1; for(int i = 1; i <= 4; i++) { double res = cal(ansx + dx[i] * T, ansy + dy[i] * T); if(res < ans) ans = res, dir = i; } if(dir == -1) T /= 2; else ansx += dx[dir] * T, ansy += dy[dir] * T; } if(ans < eps) printf("%.5lf %.5lf\n", ansx, ansy); return 0;}

转载于:https://www.cnblogs.com/Garen-Wang/p/9873612.html

你可能感兴趣的文章
(一三二)类的三种常见技术
查看>>
Android 为应用增加可移动的悬浮窗口
查看>>
看看mina和memcached的联姻(适合不同语言客户端,高并发?)
查看>>
hdu 5400 Arithmetic Sequence
查看>>
Android 学习笔记 Contacts ContentResolver query、add、update、delete 参数详解
查看>>
说说ToolBar以及仿QQ没网络提示的实现
查看>>
jvm间歇性崩溃分析
查看>>
hdu 2669 Romantic
查看>>
JSP语法(二)
查看>>
cocos2d::Vector
查看>>
nginx内部锁的实现
查看>>
基于Angular和Firebase开发应用-总览
查看>>
【Vue项目总结】webpack常规打包优化方案
查看>>
在项目中自定义路径放入element-ui并修改编译源码
查看>>
Android 视频无缝切换2.0
查看>>
对象~时间篇_日历的实现
查看>>
Vue2.0配置mint-ui踩过的那些坑
查看>>
如何做到input file中‘选择文件’的自定义
查看>>
npm ERR! cb() never called! 解决办法
查看>>
Web安全浅说
查看>>