程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> POJ 2420 A Star not a Tree?(二維費馬點)

POJ 2420 A Star not a Tree?(二維費馬點)

編輯:C++入門知識

題目:就是求多邊形的費馬點,輸出最小的距離。
http://poj.org/problem?id=2420
做法:隨機化變步長貪心法(模擬退火???)
首先隨機選出一點,我直接取了0,0
然後選定一個步長,往4個方向開始找,如果更優則繼續,否則降低步長,直到滿足題目要求精度
也可以8個方向等等
[cpp] 
#include<iostream> 
#include<fstream> 
#include<iomanip> 
#include<cstdio> 
#include<cstring> 
#include<algorithm> 
#include<cstdlib> 
#include<cmath> 
#include<set> 
#include<map> 
#include<queue> 
#include<stack> 
#include<string> 
#include<vector> 
#include<sstream> 
#include<cassert> 
#define LL long long 
#define eps 1e-6 
#define inf 1ll<<50 
#define zero(a) fabs(a)<eps 
#define N 20005 
using namespace std; 
struct Point{ 
    double x,y; 
}p[105],cur,pre; 
int n; 
int way[4][2]={0,1,0,-1,1,0,-1,0}; 
double dist(Point p1,Point p2){ 
    return sqrt((p1.x-p2.x)*(p1.x-p2.x)+(p1.y-p2.y)*(p1.y-p2.y)); 

double get_dist(Point cen){ 
    double sum=0; 
    for(int i=0;i<n;i++) 
        sum+=dist(cen,p[i]); 
    return sum; 

int main(){ 
    while(scanf("%d",&n)!=EOF){ 
        for(int i=0;i<n;i++) 
            scanf("%lf%lf",&p[i].x,&p[i].y); 
        pre.x=0;pre.y=0; 
        double step=100,best=get_dist(pre); 
        while(step>0.2){ 
            bool ok=true; 
            while(ok){ 
                ok=false; 
                for(int i=0;i<4;i++){ 
                    cur.x=way[i][0]*step+pre.x; 
                    cur.y=way[i][1]*step+pre.y; 
                    double dis=get_dist(cur); 
                    if(dis<best){best=dis;pre=cur;ok=true;} 
                } 
            } 
            step/=2.0; 
        } 
        printf("%d\n",(int)(best+0.5)*100/100); 
    } 
    return 0; 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved