CF1525C.Robot Collisions

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

There are nn robots driving along an OX axis. There are also two walls: one is at coordinate 00 and one is at coordinate mm .

The ii -th robot starts at an integer coordinate xi (0<xi<m)x_i~(0 < x_i < m) and moves either left (towards the 00 ) or right with the speed of 11 unit per second. No two robots start at the same coordinate.

Whenever a robot reaches a wall, it turns around instantly and continues his ride in the opposite direction with the same speed.

Whenever several robots meet at the same integer coordinate, they collide and explode into dust. Once a robot has exploded, it doesn't collide with any other robot. Note that if several robots meet at a non-integer coordinate, nothing happens.

For each robot find out if it ever explodes and print the time of explosion if it happens and 1-1 otherwise.

输入格式

The first line contains a single integer tt ( 1t10001 \le t \le 1000 ) — the number of testcases.

Then the descriptions of tt testcases follow.

The first line of each testcase contains two integers nn and mm ( 1n31051 \le n \le 3 \cdot 10^5 ; 2m1082 \le m \le 10^8 ) — the number of robots and the coordinate of the right wall.

The second line of each testcase contains nn integers x1,x2,,xnx_1, x_2, \dots, x_n ( 0<xi<m0 < x_i < m ) — the starting coordinates of the robots.

The third line of each testcase contains nn space-separated characters 'L' or 'R' — the starting directions of the robots ('L' stands for left and 'R' stands for right).

All coordinates xix_i in the testcase are distinct.

The sum of nn over all testcases doesn't exceed 31053 \cdot 10^5 .

输出格式

For each testcase print nn integers — for the ii -th robot output the time it explodes at if it does and 1-1 otherwise.

输入输出样例

  • 输入#1

    5
    7 12
    1 2 3 4 9 10 11
    R R L L R R R
    2 10
    1 6
    R R
    2 10
    1 3
    L L
    1 10
    5
    R
    7 8
    6 1 7 2 3 5 4
    R L R L L L L

    输出#1

    1 1 1 1 2 -1 2 
    -1 -1 
    2 2 
    -1 
    -1 2 7 3 2 7 3

说明/提示

Here is the picture for the seconds 0,1,20, 1, 2 and 33 of the first testcase:

Notice that robots 22 and 33 don't collide because they meet at the same point 2.52.5 , which is not integer.

After second 33 robot 66 just drive infinitely because there's no robot to collide with.

首页