zoukankan      html  css  js  c++  java
  • HDU 5073 Galaxy

    Galaxy

    Time Limit: 1000ms
    Memory Limit: 262144KB
    This problem will be judged on HDU. Original ID: 5073
    64-bit integer IO format: %I64d      Java class name: Main
    Special Judge
    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

     
    解题:贪心
    移动总比不移动优,移动k个总比移动k-1个更优。
     
     
     1 #include <bits/stdc++.h>
     2 using namespace std;
     3 using LL = long long;
     4 const int maxn = 50010;
     5 LL s[maxn],ss[maxn],a[maxn];
     6 int main(){
     7     int kase,n,k;
     8     scanf("%d",&kase);
     9     while(kase--){
    10         scanf("%d%d",&n,&k);
    11         for(int i = 1; i <= n; ++i)
    12             scanf("%I64d",a + i);
    13         if(n == k){
    14             puts("0");
    15             continue;
    16         }
    17         sort(a + 1,a + n + 1);
    18         for(int i = 1; i <= n; ++i){
    19             s[i] = s[i-1] + a[i];
    20             ss[i] = ss[i-1] + a[i]*a[i];
    21         }
    22         LL ret = 0x3f3f3f3f3f3f3f3f;
    23         for(int i = 0; i <= k; ++i){
    24             LL tmp = (ss[i + n - k] - ss[i])*(n-k);
    25             ret = min(ret,tmp - (s[i + n - k] - s[i])*(s[i + n - k] - s[i]));
    26         }
    27         printf("%.12f
    ",ret*1.0/(n-k));
    28     }
    29     return 0;
    30 }
    View Code
  • 相关阅读:
    吴恩达读书笔记【5】-流水线与端到端
    标准与扩展ACL 、 命名ACL
    VLAN间通讯 、 动态路由RIP
    HSRP热备份路由协议 、 STP生成树协议
    VLAN广播域划分
    应用层
    包格式及IP地址 、 网络层协议及设备
    传输层 、 应用层
    数据链路层解析 、 交换机基本配置
    网络基础3
  • 原文地址:https://www.cnblogs.com/crackpotisback/p/4892814.html
Copyright © 2011-2022 走看看