博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[ACM_数学] LA 3708 Graveyard [墓地雕塑 圈上新加点 找规律]
阅读量:5742 次
发布时间:2019-06-18

本文共 2547 字,大约阅读时间需要 8 分钟。

 

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

The input file contains several test cases, each of them consists of a a line that contains two integer numbers: 
n<tex2html_verbatim_mark> -- the number of holographic statues initially located at the ACM, and 
m<tex2html_verbatim_mark> -- the number of statues to be added 
(2$ \le$n$ \le$1000, 1$ \le$m$ \le$1000)<tex2html_verbatim_mark> . The length of the alley along the park perimeter is exactly 10 000 feet.

 

Output

For each test case, write to the output a line with a single real number -- the minimal sum of travel distances of all statues (in feet). The answer must be precise to at least 4 digits after decimal point.

 

\epsfbox{p3708.eps}<tex2html_verbatim_mark>

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

 

Sample Input

 

2 1 2 3 3 1 10 10

 

Sample Output

 

1666.6667 1000.0 1666.6667 0.0 题目大意:在一个周长10000的圆上等间距分布n个雕塑,现又加入m个(位置可以随意),希望所有n+m个塑像在圆上均匀分布。这就需要移动一些原有的塑像。要求n个塑像移动的总距离最小,输入n,m输出最小距离,小数点后4位。 解题思路:总是有一个雕塑没有移动,于是假设这个为原点,逆时针给n个点标号,表示到原点的距离【这里是比例距离】接下来我们把每个点移动到离它最近的距离,如果没有2个雕像移动到相同的位置,那么这样的移动一定是最优的。代码中,坐标为pos的雕塑移动的目的坐标位置是:floor(pos+0.5),就是四舍五入的结果。就是坐标缩小的好处。
\epsfbox{p3708.eps}
 
1 #include
2 #include
3 #include
4 using namespace std; 5 int main(){ 6 int n,m; 7 while(cin>>n>>m){ 8 double ans=0.0; 9 for(int i=1;i

 

 

转载地址:http://hiizx.baihongyu.com/

你可能感兴趣的文章
mac下php开发环境的搭建
查看>>
C# Note4:XML序列化和反序列化(含加密解密等)
查看>>
IO中同步、异步与阻塞、非阻塞的区别
查看>>
汇率转换0.1
查看>>
关于TreeView控件的TreeNodeCheckChanged事件无法回发处理
查看>>
BrnMall多店版网上商城正式发布
查看>>
CodeSignal 刷题 —— matrixElementSum
查看>>
201771010121 唐月晨《面向对象程序设计(java)》第四周学习总结
查看>>
Spring Boot 启动加载数据 CommandLineRunner(一般用于项目启动时,用户信息的缓存)...
查看>>
GDUFE ACM-1347
查看>>
Vue2.0入门系列——循环
查看>>
leetcode — convert-sorted-list-to-binary-search-tree
查看>>
eoe·Android 开发门户 - android开发者的必备网站
查看>>
201771010126 王燕《面向对象程序设计(Java)》第七周实验总结
查看>>
android退出程序
查看>>
openjudge 错误探测
查看>>
6609 - Minimal Subarray Length
查看>>
文件流演示案例(一)
查看>>
Asp.net导出Excel/Csv文本格式数据
查看>>
C#SqlDataReader的用法
查看>>