hdu 2899 Strange fuction——模拟退火

Posted narh

tags:

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

题目:http://acm.hdu.edu.cn/showproblem.php?pid=2899

还可三分。不过只写了模拟退火。

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<ctime>
#include<cmath>
#include<cstdlib>
#define db double
using namespace std;
const int nx[6]={0,7,6,3,2,1},c[6]={0,6,8,7,5,1};
const db dc=0.997,eps=1e-17;
int T;
db y,ans,px;
db pw(db x,int k){db ret=1;while(k){if(k&1)ret*=x;x*=x;k>>=1;}return ret;}
db calc(db x)
{
  db ret=0;
  for(int i=1;i<=4;i++)ret+=c[i]*pw(x,nx[i]);
  ret-=y*x; return ret;
}
db gtrd(db T){return (rand()*2-RAND_MAX)*T;}
void SA(db T)
{
  db x0=px,pr=ans,x,cr;
  while(T>eps)
    {
      x=x0+gtrd(T); if(x>100)x=100; if(x<0)x=0; cr=calc(x);
      if(cr<pr||exp((cr-pr)/T)*RAND_MAX<rand())
    {
      if(cr<ans)ans=cr,px=x;
      x0=x;pr=cr;
    }
      T*=dc;
    }
}
int main()
{
  srand(time(0));
  scanf("%d",&T);
  while(T--)
    {
      scanf("%lf",&y);
      px=50;ans=calc(px);
      for(int i=1;i<=2;i++)SA(10000);
      printf("%.4lf
",ans);
    }
  return 0;
}

 

以上是关于hdu 2899 Strange fuction——模拟退火的主要内容,如果未能解决你的问题,请参考以下文章

HDU2899 Strange fuction 二分

HDU 2899 strange fuction

hdu 2899 Strange fuction——模拟退火

hdu2899Strange fuction(解方程+二分)

HDU 2899 Strange fuction(牛顿迭代)

HDU 2899 Strange fuction 二分