【SCOI2010】传送带【三分法】

传送门

咳咳,当年不写博客的后果。

三分法用于处理单峰函数的最值问题。

对于最大值和最小值的处理是不太一样的,注意一下谁往中间走。

这道题固定左端点后,很明显右边是个单峰,所以右边的最短可以视作一个定值,左边移动都对应一个右边的最短值,这个最短值也可以发现是个单峰。

所以三分套三分,先固定左边,然后看右边。

#include<bits/stdc++.h> 
using namespace std;
#define in read()
#define eps 1e-8
int in{
	int cnt=0,f=1;char ch=0;
	while(!isdigit(ch)){
		ch=getchar();if(ch=='-')f=-1;
	}
	while(isdigit(ch)){
		cnt=cnt*10+ch-48;
		ch=getchar();
	}
	return cnt*f;
}
struct node{
	double x,y;
	node(){};
	node(double xx,double yy):x(xx),y(yy){}; 
	node operator + (const node &a){
		return (node){x+a.x,y+a.y};
	}
	node operator - (const node &a){
		return (node){x-a.x,y-a.y};
	}
	node operator / (double a){
		return (node){x/a,y/a};
	}
}a,b,c,d;
double p,q,r;
double dis(node a,node b){
	return sqrt((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y));
}
double calc(node x){
	node l=c,rr=d;
	while(dis(l,rr)>eps){
		node e=(rr-l)/3;
		node lmid=l+e,rmid=rr-e;
		double ans1=dis(x,lmid)/r+dis(lmid,d)/q;
		double ans2=dis(x,rmid)/r+dis(rmid,d)/q;
		if(ans1-ans2>eps)l=lmid;else rr=rmid;
	}
	return dis(x,l)/r+dis(l,d)/q;
}
void solve(){
	node l=a,rr=b;
	while(dis(l,rr)>eps){
		node x=(rr-l)/3;
		node lmid=l+x,rmid=rr-x;
		double ans1=calc(lmid)+dis(lmid,a)/p;
		double ans2=calc(rmid)+dis(rmid,a)/p;
		if(ans1-ans2>eps)l=lmid;else rr=rmid;
	}printf("%.2lf",calc(l)+dis(l,a)/p);
}
int main(){
	scanf("%lf %lf %lf %lf %lf %lf %lf %lf %lf %lf %lf",&a.x,&a.y,&b.x,&b.y,&c.x,&c.y,&d.x,&d.y,&p,&q,&r);
	solve();
	return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值