UVA-1388 && POJ-3154 墓地雕塑(数学)

来源:互联网 发布:tbq淘宝权微博 编辑:程序博客网 时间:2024/05/02 06:11
Graveyard
Time Limit: 2000MS Memory Limit: 65536KTotal Submissions: 1544 Accepted: 799 Special Judge

Description

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

Input file contains two integer numbers: n — the number of holographic statues initially located at the ACM, and m — 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.

Output

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.

Sample Input

sample input #12 1sample input #22 3sample input #33 1sample input #410 10

Sample Output

sample output #11666.6667sample output #21000.0sample output #31666.6667sample output #40.0

Hint

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

 题意:周长10000的圆上有n个雕塑,加入m个,要求雕塑最后等距放置,求原来n个雕塑的最小移动距离。

  思路:这个问题需要明确可以始终存在的情况是,加入m个雕塑后有一点没有移动,感觉这个挺简单的,证明的话不会。

  只需要将其他移动的点(假设有一点没有移动,这是求最小移动距离的充要条件),向没有移动的点的方向(即离其最近的那个方向)移动,先将比例求出来,再求移动距离

#include<iostream>//代码虽短,却非常不简单啊#include<cstdio>#include<cmath>using namespace std;int main(){    int n,m;    while(scanf("%d%d",&n,&m) != EOF)    {        double ans = 0.0;        for(int i = 1;i < n;i++)        {            double pos = (double)(n+m)/n*i;            ans += fabs(pos - floor(pos + 0.5)) / (n+m);        }        printf("%.4f\n",ans*10000);    }    return 0;}

注意一下floor函数的使用,向上取整

0 0
原创粉丝点击