HDU 4355

只能说感觉是三分吧,因为两端值肯定是最大的,而中间肯定存在一点使之最小,呃,,,,猜 的。。。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
#define LL __int64
using namespace std;
const int N=50050;

double point[N];
double weight[N];
int n;

double cal(double x){
	double ans=0,t;
	for(int i=1;i<=n;i++){
		t=fabs(x-point[i]);
		ans+=(t*t*t*weight[i]);
	}
	return ans;
}

int main(){
	int T,t=0;
	scanf("%d",&T);
	while(++t<=T){
		scanf("%d",&n);
		for(int i=1;i<=n;i++)
		scanf("%lf%lf",&point[i],&weight[i]);
		double l=point[1],r=point[n],m,mm;
		while(l+(1e-8)<=r){
			m=l+(r-l)/3;
			mm=r-(r-l)/3;
			if(cal(m)>cal(mm))
			l=m;
			else r=mm;
		}
		double ans=cal(l);
		printf("Case #%d: %.0lf\n",t,ans);
	}
	return 0;
}

  

转载于:https://www.cnblogs.com/jie-dcai/p/4276617.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值