hdu 5017 Ellipsoid(模拟退火)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5017

题意:给定一个椭球面方程,让你找到椭球面上距离原点最近的点,并求出距离

思路:原本想推出公式,结果需要解一元三次方程,放弃。。。百度发现了这个模拟退火的算法

具体算法详见链接:http://www.cnblogs.com/heaad/archive/2010/12/20/1911614.html

这也提供给我们一种解决三元二次方程的方法

代码:

#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
using namespace std;


const int D[8][2] = {{0, 1}, {0, -1}, {1, 0}, {-1, 0}, {1, 1}, {-1, -1}, {1, -1}, {-1, 1}};
double a, b, c, d, e, f;
const double INF = 1e9;
const double eps = 1e-8;

double dis(double x, double y, double z)
{
    return sqrt(x * x + y * y + z * z);
}

///c*z*z+(d * y + e * x)*z+(f * x * y + a * x * x + b * y * y - 1)=0
double cal(double x, double y)  ///已知x  y  求z
{
    double A = c;
    double B = d * y + e * x;
    double C = f * x * y + a * x * x + b * y * y - 1;
    double del = B * B - 4 * A * C;
    if (del < 0) return 1e10;
    del = sqrt(del);
    double z1 = (-B + del) / A / 2;
    double z2 = (-B - del) / A / 2;
    if (dis(x, y, z1) < dis(x, y, z2)) return z1;
    return z2;
}

double solve()///模拟退火
{
    double x = 0, y = 0, z = sqrt(1.0 / c);
    double step = 1.0, r = 0.99;//搜索半径、降温快慢
    while (step > eps)
    {
        for (int i = 0; i < 8; i++)  //八个方向
        {
            double xx = x + step * D[i][0];//通过step不断缩小搜索范围
            double yy = y + step * D[i][1];
            double zz = cal(xx, yy);//已知x、y  求z
            if (zz > INF) continue;
            if (dis(xx, yy, zz) < dis(x, y, z))
            {
                x = xx;
                y = yy;
                z = zz;//移动后的到最优解接受移动
            }
        }
        step *= r;//缩小搜索半径
    }
    return dis(x, y, z);
}

int main()
{
    while (~scanf("%lf%lf%lf%lf%lf%lf", &a, &b, &c, &d, &e, &f))
    {
        printf("%.7lf\n", solve());
    }
    return 0;
}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值