博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 5073 Galaxy (2014 Anshan D简单数学)
阅读量:5278 次
发布时间:2019-06-14

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

HDU 5073 Galaxy (2014 Anshan D简单数学)

题目链接

Description

Good news for us: to release the financial pressure, the government started selling galaxies and we can buy them from now on! The first one who bought a galaxy was Tianming Yun and he gave it to Xin Cheng as a present.http://acm.hdu.edu.cn/data/images/C549-1004-2.jpgTo be fashionable, DRD also bought himself a galaxy. He named it Rho Galaxy. There are n stars in Rho Galaxy, and they have the same weight, namely one unit weight, and a negligible volume. They initially lie in a line rotating around their center of mass.

Everything runs well except one thing. DRD thinks that the galaxy rotates too slow. As we know, to increase the angular speed with the same angular momentum, we have to decrease the moment of inertia.
The moment of inertia I of a set of n stars can be calculated with the formulahttp://acm.hdu.edu.cn/data/images/C549-1004-1.jpg
where wi is the weight of star i, di is the distance form star i to the mass of center.
As DRD’s friend, ATM, who bought M78 Galaxy, wants to help him. ATM creates some black holes and white holes so that he can transport stars in a negligible time. After transportation, the n stars will also rotate around their new center of mass. Due to financial pressure, ATM can only transport at most k stars. Since volumes of the stars are negligible, two or more stars can be transported to the same position.
Now, you are supposed to calculate the minimum moment of inertia after transportation.

Input

The first line contains an integer T (T ≤ 10), denoting the number of the test cases.

For each test case, the first line contains two integers, n(1 ≤ n ≤ 50000) and k(0 ≤ k ≤ n), as mentioned above. The next line contains n integers representing the positions of the stars. The absolute values of positions will be no more than 50000.

Output

For each test case, output one real number in one line representing the minimum moment of inertia. Your answer will be considered correct if and only if its absolute or relative error is less than 1e-9.

Sample Input

2

3 2
-1 0 1
4 2
-2 -1 1 2

Sample Output

0

0.5

题意:

给你n个在x轴点,其中k个可以任意变换坐标点,问此时每个点距离质心的距离平方和最小是多少?

题解:

首先将所有的点排序。然后每次o(n)扫描一遍。首先我们知道质心是每个坐标的和的平均值。那么从头到尾扫描每次删除起始点,添加最后点的下一个点。我们只需将这个公式拆开即可化简。注意n==k的时候输出0

代码:

#include 
const int N = 100005 ;double pos[N] ;int main(){ int t ; scanf("%d",&t) ; while(t--){ int n , k ; scanf("%d %d",&n,&k) ; for(int i = 1 ; i <= n ; i ++){ scanf("%lf",pos+i) ; } if(n == k){ printf("0\n") ; continue ; } std::sort(pos+1,pos+1+n) ; double sum = 0 ; double psum = 0 ; for(int i = 1 ; i <= n-k ; i ++){ sum += pos[i] ; psum += pos[i]*pos[i] ; } double avg = sum/(n-k) ; double ans = psum + (n-k)*avg*avg - 2*avg*sum ; for(int i = 1 ; i <= k ; i ++){ sum -= pos[i] ; sum += pos[n-k+i] ; psum -= pos[i]*pos[i] ; psum += pos[n-k+i]*pos[n-k+i] ; avg = sum/(n-k) ; double temp = psum + (n-k)*avg*avg - 2*avg*sum ; ans = std::min(ans,temp) ; } printf("%.10lf\n",ans) ; } return 0 ;}
posted @
2016-10-02 23:42 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/thecoollight/p/5928394.html

你可能感兴趣的文章
打飞机游戏【来源于Crossin的编程教室 http://chuansong.me/account/crossincode 】
查看>>
[LeetCode] Merge Intervals
查看>>
【翻译自mos文章】当点击完 finishbutton后,dbca 或者dbua hang住
查看>>
Linux编程简介——gcc
查看>>
2019年春季学期第四周作业
查看>>
MVC4.0 利用IActionFilter实现简单的后台操作日志功能
查看>>
rotate the clock
查看>>
bugku 变量
查看>>
数据库01 /Mysql初识以及基本命令操作
查看>>
数据库02 /MySQL基础数据类型以及多表之间建立联系
查看>>
Python并发编程04/多线程
查看>>
CF461B Appleman and Tree
查看>>
CF219D Choosing Capital for Treeland
查看>>
杂七杂八的小笔记本
查看>>
51Nod1353 树
查看>>
CF1215E Marbles
查看>>
BZOJ2339 HNOI2011卡农(动态规划+组合数学)
查看>>
octave基本操作
查看>>
axure学习点
查看>>
WPF文本框只允许输入数字[转]
查看>>