惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

云风的 BLOG
云风的 BLOG
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
月光博客
月光博客
人人都是产品经理
人人都是产品经理
宝玉的分享
宝玉的分享
博客园 - 司徒正美
WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
罗磊的独立博客
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
L
LangChain Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
Visual Studio Blog
S
SegmentFault 最新的问题
Google DeepMind News
Google DeepMind News
博客园 - 聂微东

OhYee 博客

小鹏辅助驾驶测评|OhYee 博客 小鹏非支持手机开启自动解锁|OhYee 博客 使用函数计算实现 301 重定向|OhYee 博客 针对 HTML 内容使用 Ant Design 图片弹框|OhYee 博客 博客进程泄露及僵尸进程解决|OhYee 博客 蓝易云服务器体验|OhYee 博客 SSH 调起本地 VSCode|OhYee 博客 【2022 秋招内推】阿里云后端研发工程师|OhYee 博客 使用函数计算获取 IP 地址信息|OhYee 博客 正确获取客户端 IP/HTTP Header 也可能重复|OhYee 博客 评测 Oculus Quest2 及 BigScreen|OhYee 博客 NextJS 热重载保留状态|OhYee 博客 如何优雅地贴 gist 代码|OhYee 博客 Linux 精细化文件权限|OhYee 博客 VSCode 容器开发环境|OhYee 博客 Clash 的不兼容更新排查|OhYee 博客 Zeek 导出 PCAP|OhYee 博客 记一次 ssh 配置问题|OhYee 博客 Git Commit 规范化工具|OhYee 博客 谈谈《星之卡比-探索发现》|OhYee 博客 VSCode 快捷键绑定 Shell 命令|OhYee 博客 ASN.1 语法及 X.509 证书格式解析解析|OhYee 博客 腾讯企业邮箱忽略 MX 记录发信|OhYee 博客 Chrome/Edge 标签组插件|OhYee 博客 【应届内推】阿里云后端研发工程师|OhYee 博客 损坏的 Typecho 备份处理为 JSON|OhYee 博客 VS Code VIM 插件高效使用|OhYee 博客 SSH 正反向代理|OhYee 博客 Let's Encrypt 根证书过期引发的问题|OhYee 博客 OpenWRT 忽略内核依赖|OhYee 博客
HDU 5073.Galaxy(2014 鞍山赛区现场赛 D)|OhYee 博客
2016-08-27 · via OhYee 博客

这是一篇最后编辑于 8 年前 的文章,其内容可能与目前实际情况差异较大,请注意甄别

题目

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

题解

给一些数,删去一些数,使剩下的数的方差最小

方差的意义是一串数的离散程度
因此应该尽可能选取 “近” 的数

那么首先要做的第一件事就是排序
这样只需要找到连续的串中最大的就行

所以可以再 O(n) 的时间里扫描所有的串

由于串的长度是确定的,因此每次都是减去一个数再加上一个数
因此可以在 O(1) 的时间里算出所有数的和 sum 和平方的和 sums

我们要算的是方差,方差是 所有数与平均数的平方的和除以数目

也即 average = sum/(n-k) ans = {(a[i] - average)*(a[i] - average)}/(n-k)

展开化简可得 ans = (n - k)*average*average + sums - 2 * average*sum

这样可以再 O(1) 的时间算出来当前串的方差

能优化到这一步一般题应该没问题了,但是这个题还存在 溢出 的情况, sums 最大是非常大的,如果用 double 存,最高位和最低位错的会比较多
只能继续转换公式,尽可能用 long long

再把上面的式子展开化简可得 ans = sums - sum*sum/(n-k)
有一点技巧就是 在这里可以用 long long 保存
ans = (n - k)*sums - sum*sum
比较和保存这个值,由于 n-k 是常数,并不会对结果造成影响,最后输出的时候再除以 n-k 即可

注意各种细节的处理,因为 for 的循环条件坑了好久……

代码

/*
By:OhYee
Github:OhYee
Blog:http://www.oyohyee.com/
Email:oyohyee@oyohyee.com

かしこいかわいい?
エリーチカ!
要写出来Хорошо的代码哦~
*/
#include <cstdio>
#include <algorithm>
#include <cmath>
#include <cstring>
#include <iomanip>
#include <iostream>
#include <map>
#include <set>
#include <list>
#include <queue>
#include <stack>
#include <string>
#include <vector>
#include <bitset>
#include <functional>

using namespace std;

const int INF = 0x7FFFFFFF;
const double eps = 1e-10;

const int maxn = 50005;

int n,k;
long long a[maxn];

void Do() {
    cin >> n >> k;
    for(int i = 0;i < n;i++)
        cin >> a[i];
    if(n - k > 1) {
        sort(a,a + n);
        long long Min = -1;
        long long sum = 0;
        long long sums = 0;
        for(int i = 0;i < n - k;i++) {
            sum += a[i];
            sums += a[i] * a[i];
        }

        for(int i = 0;i <= k;i++) {
            if(i) {
                sum -= a[i - 1];
                sum += a[n - k + i - 1];
                sums -= a[i - 1] * a[i - 1];
                sums += a[n - k + i - 1] * a[n - k + i - 1];
            }
            //double average = sum / (double)(n - k);

            //double ans = (double)(n - k)*average*average + sums - 2 * average*sum;

            long long ans = (n - k)*sums - sum*sum;

            if(Min == -1)
                Min = ans;
            else
                Min = min(Min,ans);
        }
        if(Min == -1)
            Min = 0;
        cout << fixed << setprecision(11) << (double)Min / (double)(n - k) << endl;
    } else {
        cout << 0 << endl;
    }
}

int main() {
    cin.tie(0);
    cin.sync_with_stdio(false);

    int T;
    cin >> T;
    while(T--)
        Do();

    return 0;
}