现在的位置: 首页 > 综合 > 正文

ACM 二分答案 二分查找 hdu4071

2018年05月02日 ⁄ 综合 ⁄ 共 3177字 ⁄ 字号 评论关闭

二分最短距离

/*
 * Author:  nick wong
 * Created Time:  2014年08月23日 星期六 13时34分11秒
 * File Name: a.cpp
 */
#include<cstdio>
#include<iostream>
#include<cstring>
#include<cstdlib>
#include<cmath>
#include<algorithm>
#include<string>
#include<map>
#include<set>
#include<vector>
#include<queue>
#include<stack>
using namespace std;
#define out(x) cout<<#x<<": "<<x<<endl
const double eps(1e-8);
const int maxn=50100;
const long long maxint=-1u>>1;
const long long maxlong=maxint*maxint;
typedef long long lint;
double a[maxn],b[maxn],ans,ansl,ansr,mx;
int n;

void init()
{
	for (int i=1; i<=n; i++)
		scanf("%lf%lf",&a[i],&b[i]);
}

bool check(double len)
{
	double ml,mr,w;
	ml=-maxint; mr=maxint;
	for (int i=1; i<=n; i++)
	{
		if (len<b[i]) return false;
		w=sqrt(len*len-b[i]*b[i]);
		ml=max(ml,a[i]-w);
		mr=min(mr,a[i]+w);
		if (ml>mr) return false;
	}
	ansl=ml; ansr=mr;
	return true;
}

void work()
{
	ansl=-maxint; ansr=maxint;
	double l=0,r=1000000,m;
	while(r-l>eps)
	{
		m=(l+r)/2;
		if (check(m)) r=m; else l=m;
	}
	mx=(ansl+ansr)/2;
	printf("%.8f %.8f\n",mx,m);
}

int main()
{
	while(cin>>n)
	{
		if (n==0) break;
		init();
		work();
	}
    return 0;
}

Trick or Treat

Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 328    Accepted Submission(s): 110
Special Judge


Problem Description
Johnny and his friends have decided to spend Halloween night doing the usual candy collection from the households of their village. As the village is too big for a single group to collect the candy from all houses sequentially, Johnny and his friends have decided
to split up so that each of them goes to a different house, collects the candy (or wreaks havoc if the residents don't give out candy), and returns to a meeting point arranged in advance.There are n houses in the village, the positions of which can be identified
with their Cartesian coordinates on the Euclidean plane. Johnny's gang is also made up of n people (including Johnny himself). They have decided to distribute the candy after everybody comes back with their booty. The houses might be far away, but Johnny's
interest is in eating the candy as soon as possible.Keeping in mind that, because of their response to the hospitality of some villagers, some children might be wanted by the local authorities, they have agreed to fix the meeting point by the river running
through the village, which is the line y = 0. Note that there may be houses on both sides of the river, and some of the houses may be houseboats (y = 0). The walking speed of every child is 1 meter per second, and they can move along any direction on the plane.At
exactly midnight, each child will knock on the door of the house he has chosen, collect the candy instantaneously, and walk back along the shortest route to the meeting point. Tell Johnny at what time he will be able to start eating the candy.
 


Input
Each test case starts with a line indicating the number n of houses (1 <=n <= 50 000). The next n lines describe the positions of the houses; each of these lines contains two oating point numbers x and y (-200 000 <= x; y <=200 000), the coordinates of a house
in meters. All houses are at di erent positions. A blank line follows each case. A line with n = 0 indicates the end of the input; do not write any output for this case.
 


Output
For each test case, print two numbers in a line separated by a space: the coordinate x of the meeting point on the line y = 0 that minimizes the time the last child arrives, and this time itself (measured in seconds after midnight). Your answer should be accurate
to within an absolute or relative error of 10-5.
 


Sample Input
2 1.5 1.5 3 0 1 0 0 4 1 4 4 4 -3 3 2 4 5 4 7 -4 0 7 -6 -2 4 8 -5 0
 


Sample Output
1.500000000 1.500000000 0.000000000 0.000000000 1.000000000 5.000000000 3.136363636 7.136363636

抱歉!评论已关闭.