读书人

POJ 3154 Graveyard 添加m个雕塑后仍

发布时间: 2013-03-01 18:33:02 作者: rapoo

POJ 3154 Graveyard 添加m个雕塑后仍旧使每个雕塑在圆圈上距离相等 需要移动的最小距离

原题传送:http://poj.org/problem?id=3154

Graveyard

Programming contests became so popular in the year 2397 that the governor of New Earck — the largest human-inhabited planet of the galaxy — opened a special Alley of Contestant Memories (ACM) at the local graveyard. The ACM encircles a green park, and holds the holographic statues of famous contestants placed equidistantly along the park perimeter. The alley has to be renewed from time to time when a new group of memorials arrives.

When new memorials are added, the exact place for each can be selected arbitrarily along the ACM, but the equidistant disposition must be maintained by moving some of the old statues along the alley.

Surprisingly, humans are still quite superstitious in 24th century: the graveyard keepers believe the holograms are holding dead people souls, and thus always try to renew the ACM with minimal possible movements of existing statues (besides, the holographic equipment is very heavy). Statues are moved along the park perimeter. Your work is to find a renewal plan which minimizes the sum of travel distances of all statues. Installation of a new hologram adds no distance penalty, so choose the places for newcomers wisely!

Input file contains two integer numbers: n — the number of holographic statues initially located at the ACM, andm — the number of statues to be added (2 ≤n ≤ 1000, 1 ≤ m ≤ 1000). The length of the alley along the park perimeter is exactly 10 000 feet.

Write a single real number to the output file — the minimal sum of travel distances of all statues (in feet). The answer must be precise to at least 4 digits after decimal point.

POJ 3154 Graveyard  添加m个雕塑后仍旧使每个雕塑在圆圈下距离相等 需要移动的最小距离

Pictures show the first three examples. Marked circles denote original statues, empty circles denote new equidistant places, arrows denote movement plans for existing statues.

Northeastern Europe 2006

题意:


一个周长为10000的圆圈,一开始等距的安放着N个雕塑,现在想增加M个雕塑,使得雕塑之间还是等距,问坟墓最少移动的距离?

 #include <stdio.h> #include <string.h> #include <math.h> #include <algorithm> using namespace std; #define N 1005 using namespace std; int n, m; double a[N], c[N * 2]; double  mmin(double aa,double bb) { if(aa<bb) return aa; return bb; } int main() {     int i;     double j, d, ans,mm;     while(scanf("%d%d", &n, &m) == 2)     {         for(i = 0; i < n; i ++)             a[i]=i*1.0/(double)n;         for(i = 0;i < n + m; i ++)             c[i] =i*1.0/(double)(n+m);          double k;         for(ans = 0.0, i = 0; i < n; i ++)         { int k; for(k=0;k<n+m;k++) {                 if(a[i]<=c[k]) break; }             int loc =k;             mm = fabs(a[i] - c[loc]);             if(loc > 0)                mm = mmin(mm, fabs(a[i] - c[loc - 1]));             if(loc < n + m - 1)                mm= mmin(mm, fabs(a[i] - c[loc + 1]));             ans += mm;         }         printf("%.4f\n", ans*10000);     }     return 0; }





读书人网 >编程

热点推荐