CodeFoeces-699A

题目

原题链接:A. Launch of Collider

题意

给出n个小球的位置和运动方向,问第一个两小球相遇的时间。
参考了其他作者的思路,相邻的两个若方向相反,则记录,更新最小值。

代码

#include
using namespace std;
int main() {
    int n,x[200000];
    char s[200000];
    scanf("%d",&n);
    scanf("%s",s);
    for(int i=0; i

你可能感兴趣的:(CodeFoeces-699A)