CodeForces 699A Launch of Collider

来源:互联网 发布:如何优化亚马逊关键词 编辑:程序博客网 时间:2024/06/05 17:45

题目地址


A. Launch of Collider
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

There will be a launch of a new, powerful and unusual collider very soon, which located along a straight line. n particles will be launched inside it. All of them are located in a straight line and there can not be two or more particles located in the same point. The coordinates of the particles coincide with the distance in meters from the center of the collider, xi is the coordinate of the i-th particle and its position in the collider at the same time. All coordinates of particle positions are even integers.

You know the direction of each particle movement — it will move to the right or to the left after the collider's launch start. All particles begin to move simultaneously at the time of the collider's launch start. Each particle will move straight to the left or straight to the right with the constant speed of 1 meter per microsecond. The collider is big enough so particles can not leave it in the foreseeable time.

Write the program which finds the moment of the first collision of any two particles of the collider. In other words, find the number of microseconds before the first moment when any two particles are at the same point.

Input

The first line contains the positive integer n (1 ≤ n ≤ 200 000) — the number of particles.

The second line contains n symbols "L" and "R". If the i-th symbol equals "L", then the i-th particle will move to the left, otherwise the i-th symbol equals "R" and the i-th particle will move to the right.

The third line contains the sequence of pairwise distinct even integers x1, x2, ..., xn(0 ≤ xi ≤ 109) — the coordinates of particles in the order from the left to the right. It is guaranteed that the coordinates of particles are given in the increasing order.

Output

In the first line print the only integer — the first moment (in microseconds) when two particles are at the same point and there will be an explosion.

Print the only integer -1, if the collision of particles doesn't happen.

Examples
input
4RLRL2 4 6 10
output
1
input
3LLR40 50 60
output
-1
Note

In the first sample case the first explosion will happen in 1 microsecond because the particles number 1 and 2 will simultaneously be at the same point with the coordinate 3.

In the second sample case there will be no explosion because there are no particles which will simultaneously be at the same point.


题意:直线上有一些点,给定点的初始位置及运动方向(坐标都为偶数),点都以固定速度1运动,求最早哪一时刻会有两个点相遇。

思路:只要考虑相邻的点即可,如果相邻的两个点左边在向右运动,右半在向左运动,那么算出相遇时间,与最小值进行比较。


#include <iostream>#include <string>using namespace std;const int MaxN=200005;const int MaxX=1e9+5;int n,MinTime;string dir;int x[MaxN],d[MaxN];int main() {ios::sync_with_stdio(false);cin.tie(0);cin>>n;cin>>dir;for (int i=1; i<=n; i++) {if (dir[i-1]=='L') d[i]=0;else d[i]=1;cin>>x[i];}MinTime=MaxX;for (int i=2; i<=n; i++) {if (dir[i-1]=='L' && dir[i-2]=='R') {if (((x[i]-x[i-1])/2)<MinTime) MinTime=(x[i]-x[i-1])/2;}}if (MinTime<MaxX) cout<<MinTime<<"\n";else cout<<"-1\n";}


0 0
原创粉丝点击