国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發(fā)設計 > 正文

ACM刷題之Codeforces ————The Meeting Place Cannot Be Changed

2019-11-06 06:31:58
字體:
來源:轉載
供稿:網(wǎng)友
The Meeting Place Cannot Be Changedtime limit per test5 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard output

The main road in Bytecity is a straight line from south to north. Conveniently, there are coordinates measured in meters from the southernmost building in north direction.

At some points on the road there are n friends, and i-th of them is standing at the point xi meters and can move with any speed no greater than vi meters per second in any of the two directions along the road: south or north.

You are to compute the minimum time needed to gather all the n friends at some point on the road. Note that the point they meet at doesn't need to have integer coordinate.

Input

The first line contains single integer n (2?≤?n?≤?60?000) — the number of friends.

The second line contains n integers x1,?x2,?...,?xn (1?≤?xi?≤?109) — the current coordinates of the friends, in meters.

The third line contains n integers v1,?v2,?...,?vn (1?≤?vi?≤?109) — the maximum speeds of the friends, in meters per second.

Output

PRint the minimum time (in seconds) needed for all the n friends to meet at some point on the road.

Your answer will be considered correct, if its absolute or relative error isn't greater than 10?-?6. Formally, let your answer be a, while jury's answer be b. Your answer will be considered correct if  holds.

Examplesinput
37 1 31 2 1output
2.000000000000input
45 10 3 22 3 2 4output
1.400000000000Note

In the first sample, all friends can gather at the point 5 within 2 seconds. In order to achieve this, the first friend should go south all the time at his maximum speed, while the second and the third friends should go north at their maximum speeds.

比賽時被卡住的一道題。

賽后看了題解,發(fā)現(xiàn)是二分。

研究了一下,然后做了一下,做出來了

首先假定最大時間是從0到最長距離的那個時間(速度1)

然后進行二分。

只要往左的最大和往右的最小有交集,則放大L,沒有則縮小R。

下面是ac代碼 (注意精度)

#include<stdio.h>#include<string.h>#include<stdlib.h>#include<math.h>#include<algorithm>#include<map>#include<set>#include<queue>#include<string>#include<iostream>using namespace std;#define MID(x,y) ((x+y)>>1)#define CLR(arr,val) memset(arr,val,sizeof(arr))#define FAST_IO ios::sync_with_stdio(false);cin.tie(0);const double PI = acos(-1.0);const int INF = 0x3f3f3f3f;const int N=2e5+7;const double cha=0.0000001;double v[N];double x[N];double l,r,r2,maxn=0.0,mids;int n;bool check(double mi){	double maxx=0.0,minxx=1000000000;	for(int i=1;i<=n;i++)	{		maxx=max(maxx,x[i]-v[i]*mi);		minxx=min(minxx,x[i]+v[i]*mi);			}	if(maxx<minxx)			return false;				return true;}int main(){	//freopen("f:/input.txt", "r", stdin);	scanf("%d",&n);	for(int i=1;i<=n;i++)	{		scanf("%lf",&x[i]);		maxn=max(x[i],maxn);	}	for(int i=1;i<=n;i++)	{		scanf("%lf",&v[i]);	}	l=0;	r=r2=maxn;	while(r-l>cha)	{		mids=(r+l)/2;		if(check(mids))		{			l=mids+cha;		}else{			r=mids-cha;		}	}	printf("%lf/n",l-cha);	}


發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 突泉县| 镇宁| 新闻| 清镇市| 儋州市| 始兴县| 保定市| 麟游县| 驻马店市| 铜山县| 县级市| 香港 | 大田县| 汉源县| 阿巴嘎旗| 东兴市| 崇州市| 钟山县| 营山县| 阳江市| 宁都县| 桃园市| 大邑县| 板桥市| 临沭县| 东丽区| 信阳市| 花莲市| 沭阳县| 宁明县| 芷江| 邮箱| 申扎县| 巧家县| 晋宁县| 台山市| 陇南市| 康平县| 曲靖市| 攀枝花市| 宜宾市|