• codeforces #363a Launch of Collider


    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
    4
    RLRL
    2 4 6 10
    output
    1
    input
    3
    LLR
    40 50 60
    output
    -1
    #include<stdio.h>
    #include<iostream>
    #include<algorithm>
    using namespace std;
    const int maxx = 200005;
    struct Node{
        int pos;
        char dir;
    }p[maxx];
    bool cmp(Node a,Node b){
        return a.pos<b.pos;
    }
    int main(){
        int n;
        scanf("%d",&n);
        getchar();
        for(int i=0;i<n;i++){
            scanf("%c",&p[i].dir);
        }
        for(int i=0;i<n;i++){
            scanf("%d",&p[i].pos);
        }
    
        int ans=0x7fffffff;
        for(int i=1;i<n;i++){
            if(p[i].dir!=p[i-1].dir&&p[i].dir=='L'){
                ans=min(ans,(p[i].pos-p[i-1].pos)/2);
            }
        }
        if(ans<0x7fffffff){
            printf("%d
    ",ans);
        }else{
            printf("-1");
        }
        return 0;
    }
    View Code
  • 相关阅读:
    由于扩展配置问题而无法提供您请求的页面。如果该页面是脚本,请添加处理程序。
    中晟银泰国际中心酒店式公寓介绍 业主交流QQ群:319843248
    社保关系转移
    在中国,大数据的有效商业模式在哪里?
    指点传媒:在手机上做“精准营销”
    说说大型高并发高负载网站的系统架构【转】
    BI的相关问题[转]
    python 中有趣的库tqdm
    python之字符串操作方法
    比Screen更好用的神器:tmux
  • 原文地址:https://www.cnblogs.com/superxuezhazha/p/5687393.html
Copyright © 2020-2023  润新知