程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> HDU 5073 Galaxy

HDU 5073 Galaxy

編輯:C++入門知識

HDU 5073 Galaxy


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 w i is the weight of star i, d i 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 transpZ†·Ÿ"http://www.Bkjia.com/kf/ware/vc/" target="_blank" class="keylink">vcnQgYXQgbW9zdCBrIHN0YXJzLiBTaW5jZSB2b2x1bWVzIG9mIHRoZSBzdGFycyBhcmUgbmVnbGlnaWJsZSwgdHdvIG9yIG1vcmUgc3RhcnMgY2FuIGJlIHRyYW5zcG9ydGVkIHRvIHRoZSBzYW1lIHBvc2l0aW9uLiA8YnI+Cjxicj4KTm93LCB5b3UgYXJlIHN1cHBvc2VkIHRvIGNhbGN1bGF0ZSB0aGUgbWluaW11bSBtb21lbnQgb2YgaW5lcnRpYSBhZnRlciB0cmFuc3BvcnRhdGlvbi4KIAoKCgo8cCBjbGFzcz0="pst"> 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 

ÌâÒ⣺¸øÄã2¸öÊýn,m n´ú±íÓÐn¸öµã£¬m´ú±íÄܽøÐÐm´ÎÒƶ¯µãµÄ²Ù×÷£¬ÒªÄãÇó³ö×îСµÄI£¬±íʾΪËùÓеĵ㵽ÖÐÐĵãµÄ¾àÀëƽ·½ºÍ×îС


˼·£º ¿ÉÒÔ°ÑËùÓеĵ㰴ÕÕ˳ÐòÅÅÁÐÏÂÀ´£¬Ã¿´ÎÑ¡È¡£¨n-k£©µÄÇø¼äÄÚµÄi£¬Ã¶¾ÙËùÓеģ¨n-k£©Çø¼ä£¬ÕÒ³ö×îСµÄ


AC´úÂ룺

#include
#include
#include
#include
using namespace std;

#define N 50000+5

double  a[N],b[N];

int main()
{
    int n,k;
    int i,j;
    int t;
    double mid;
    double s1,s2;
    scanf("%d",&t);
    while(t--)
    {
        double sum=0;
        scanf("%d %d",&n,&k);
        for(i=1;i<=n;i++)
            scanf("%d",&a[i]);
        if(n!=k)
        {
            sort(a+1,a+n+1);
            for(i=1;i<=n;i++)
                b[i]=a[i]*a[i];
            s1=s2=0;
            for(i=1;i<=n-k;i++)
            {
                s1+=a[i];
                s2+=b[i];
            }
            sum=s2-s1*s1/(n-k);
            for(i=2,j=n-k+1;j<=n;i++,j++)
            {
                s1-=a[i-1];
                s1+=a[j];
                s2-=b[i-1];
                s2+=b[j];
                double t=s2-s1*s1/(n-k);
                if(t

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved