Telecasting station - SGU 114(带劝中位数)

题目大意:在一个数轴上有N个点,每个点都有一个权值,在这个数轴上找一个点,是的每个点到这个点的距离之和乘上权值的总和最小。

分析:以前也遇到过类似的问题,不过并不知道这是带权值的中位数问题,百度百科有比较精彩的证明,可以证明出来跟这个位置和距离没有什么关系,只和权值有关系,假设这个点是T,那么 ∑d[L](L<T) + d[T] >= ∑d[R](R>=T+1),反之也成立。

 

代码如下:

=================================================================================================================

#include<stdio.h>
#include<algorithm>
#include<vector>
#include<iostream>
#include<math.h>
#include<string.h>
using namespace std;

const int MAXN = 15007;

struct Point
{
    double x;
    int person;
}p[MAXN];

bool cmp(Point a, Point b)
{
    return a.x < b.x;
}

int main()
{
    int i, N, L=0, R=0;

    scanf("%d", &N);

    for(i=0; i<N; i++)
    {
        scanf("%lf%d", &p[i].x, &p[i].person);
        R += p[i].person;
    }

    sort(p, p+N, cmp);

    for(i=0; i<N; i++)
    {
        L += p[i].person;
        R -= p[i].person;

        if(L >= R)
            break;
    }

    printf("%lf\n", p[i].x);

    return 0;
}

 

转载于:https://www.cnblogs.com/liuxin13/p/4815734.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值