bzoj3680

Posted 123456

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj3680相关的知识,希望对你有一定的参考价值。

$模拟退火$

$这种全局最优的问题用模拟退火$

$模拟退火就是每次向四周随机移动,移动的幅度和温度成正比,如果新的位置更优就接受,否则按一定概率接收,概率和温度成正比$

$最后稳定后再在最优解附近蹦跶几下看看有没有更好的$

$你问我这是什么道理,我说无(我)可(不)奉(知)告(道)$

技术分享图片
#include<bits/stdc++.h>
using namespace std;
const int N = 10005;
struct P {
    double x, y, w;
} p[N], ans;
int n;
double mn = 1e18, T = 100000;
double rd() {
    return rand() % 10000 / 10000.0; 
}
double sqr(double x) {
    return x * x;
}
double calc(P a) {
    double ret = 0;
    for(int i = 1; i <= n; ++i) {
        ret += sqrt(sqr(a.x - p[i].x) + sqr(a.y - p[i].y)) * p[i].w;
    }
    if(ret < mn) {
        mn = ret;
        ans = a;
    }
    return ret;
}
int main() {
    srand(19992147);
    scanf("%d", &n);
    for(int i = 1; i <= n; ++i) {
        scanf("%lf%lf%lf", &p[i].x, &p[i].y, &p[i].w);
        ans.x += p[i].x;
        ans.y += p[i].y;
    }
    ans.x /= n;
    ans.y /= n;
    P now = ans;
    while(T > 0.001) {
        P nw;
        nw.x = now.x + T * (rd() * 2 - 1.0); 
        nw.y = now.y + T * (rd() * 2 - 1.0);
        double d = calc(now) - calc(nw);
        if(d > 0 || exp(d / T) > rd()) {
            now = nw;
        } 
        T *= 0.991;
    }
    for(int i = 1; i <= 1000; ++i) {
        P nw;
        nw.x = ans.x + T * (rd() * 2 - 1.0);
        nw.y = ans.y + T * (rd() * 2 - 1.0);
        calc(nw);
    }
    printf("%.3f %.3f\n", ans.x, ans.y);
    return 0;
}
View Code

 

以上是关于bzoj3680的主要内容,如果未能解决你的问题,请参考以下文章

bzoj3680 -- 模拟退火

BZOJ3680吊打XXX(模拟退火)

bzoj3680 吊打XXX

bzoj3680: 吊打XXX

bzoj3680

BZOJ3680吊打XXX 模拟退火