HDU 5073 Galaxy (2014鞍山赛区D题,暴力)

HDU5073 水题。维护和以及平方和就可以了。

Galaxy

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others) Total Submission(s): 505 Accepted Submission(s): 109 Special Judge

Problem 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.

To 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 formula

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

Source

2014 Asia AnShan Regional Contest

/* ***
Author :kuangbin
Created Time :2014/10/22 23:20:07
File Name :E:\2014ACM\2014现场赛\鞍山\D.cpp
************************************************ */

#include <stdio.h>

#include <string.h>

#include

#include

#include

#include

#include

#include

#include

#include <math.h>

#include <stdlib.h>

#include <time.h>
using namespace std;
double x[50010];

int main()
{
//freopen(“in.txt”,”r”,stdin);
//freopen(“out.txt”,”w”,stdout);
int T;
int n,k;
scanf(“%d”,&T);
while(T–){
scanf(“%d%d”,&n,&k);
for(int i = 0;i < n;i++)
scanf(“%lf”,&x[i]);
sort(x,x+n);
if(n == k){
printf(“0\n”);
continue;
}
int cnt = n-k;
double sum = 0;
double sum2 = 0;
for(int i = 0;i < cnt;i++){
sum += x[i];
sum2 += x[i]x[i];
}
double ans = sum2 - 2\
sum*(sum/cnt) + cnt(sum/cnt)(sum/cnt);
for(int i = cnt;i < n;i++){
sum += x[i];
sum2 += x[i]x[i];
sum -= x[i-cnt];
sum2 -= x[i-cnt]
x[i-cnt];
ans = min(ans,sum2-2*sum*(sum/cnt)+cnt(sum/cnt)(sum/cnt));
}
printf(“%.10lf\n”,ans);
}
return 0;
}

------ 本文结束------
  • 本文作者: kuangbin
  • 本文链接: 486.html
  • 版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明出处!
0%