hdu 4717 The Moving Points

一开始完全没有思路诶,看了网上大神的代码写的,大神好厉害!


最大距离是一个开口向上的抛弧线,我们求的就是其中的最低点,而抛物线则用三分法去逼近,每一时刻暴力全部的线段的长度,求得最长线段。



#include<iostream>
#include<stdio.h>
#include<math.h>
#include<string.h>
#include<vector>
#include<list>
#include<algorithm>
using namespace std;
#define MIN 1e-6
struct node{
	double x;
	double y;
}a[310],s[310];
		int N;
double cal(double x);
void solve();
int main(){
	int T;
	int t = 1;
	scanf("%d",&T);
	while(T--){
		scanf("%d",&N);
		for(int i=0;i<N;i++){
			scanf("%lf%lf%lf%lf",&a[i].x,&a[i].y,&s[i].x,&s[i].y);
		}
		printf("Case #%d: ",t++);
		solve();
	} 
	return 0;
}

double cal(double x){
	double m = 0;
	for(int i=0;i<N;i++){
		double px1 = a[i].x + s[i].x*x;
		double py1 = a[i].y + s[i].y*x;
		for(int j=i+1;j<N;j++){
			double px2 = a[j].x + s[j].x*x;
			double py2 = a[j].y + s[j].y*x;
			m = max(m,sqrt((px1-px2)*(px1-px2)+(py1-py2)*(py1-py2)));
		}
	}
	return m;
}



void solve(){
	double l = 0;
	double r = 0xffffff;
	while(r-l>MIN){
		double tm = (r-l)/3;
		double tl = l+tm;
		double tr = r-tm;
		if(cal(tl)>cal(tr)){
			l = tl;
		}
		else{
			r = tr;
		}
	}
	printf("%.2lf %.2lf\n",l,cal(l));
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值