zoukankan      html  css  js  c++  java
  • HDOJ 5073 Galaxy 数学 贪心


    贪心:

    保存连续的n-k个数,求最小的一段方差。。。

    。预处理O1算期望。

    。。


    Galaxy

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others)
    Total Submission(s): 752    Accepted Submission(s): 176
    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
     


    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    
    using namespace std;
    
    const int maxn=50050;
    
    double sum[maxn],sum2[maxn];
    int a[maxn];
    int n,k;
    
    double FC(int from,int to)
    {
      double n=to-from+1.;
      double V=(sum[to]-sum[from-1])/n;
      double A=sum2[to]-sum2[from-1];
      double B=sum[to]-sum[from-1];
      return A-2*V*B+n*V*V;
    }
    
    int main()
    {
      int T_T;
      scanf("%d",&T_T);
      while(T_T--)
        {
          scanf("%d%d",&n,&k);
          for(int i=1;i<=n;i++)
            {
              scanf("%d",a+i);
            }
          if(k==n||k==n-1)
            {
              puts("0.0000000000");
              continue;
            }
          sort(a+1,a+1+n);
          for(int i=1;i<=n;i++)
            {
              sum[i]=sum[i-1]+1.*a[i];
              sum2[i]=sum2[i-1]+1.*a[i]*a[i];
            }
         int m=n-k;
         double ans=1e30;
          for(int i=1;i+m-1<=n;i++)
            {
              int j=i+m-1;
              ans=min(ans,FC(i,j));
            }
          printf("%.10lf
    ",ans);
        }
      return 0;
    }
    




  • 相关阅读:
    人不成熟的六个特征
    qq申请器,有源码,用post提交
    有的公司,在不断创新,我们时刻能感受到
    Java中 堆 栈,常量池等概念解析(转载)
    Jquery获得相同id的元素
    强大Jquery插件,table排序
    和计算机沟通
    千万级架构设计诀窍(zz)(
    强大Jquery插件,table排序之二
    原文作者乔纳森·丹尼可(Jonathan Danylko)是一位自由职业的web架构师和程序员,编程经验已超过20年,涉足领域有电子商务、生物技术、房地产、医疗、保险和公用事业。正如乔纳 森在文中所言,本文适合刚毕业的大学生和刚入门的程序员。如果你已是高级
  • 原文地址:https://www.cnblogs.com/mengfanrong/p/5260947.html
Copyright © 2011-2022 走看看