CF1468K.The Robot

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There is a robot on a checkered field that is endless in all directions. Initially, the robot is located in the cell with coordinates (0,0)(0, 0) . He will execute commands which are described by a string of capital Latin letters 'L', 'R', 'D', 'U'. When a command is executed, the robot simply moves in the corresponding direction:

  • 'L': one cell to the left (the xx -coordinate of the current cell decreases by 11 );
  • 'R': one cell to the right (the xx -coordinate of the current cell is increased by 11 );
  • 'D': one cell down (the yy -coordinate of the current cell decreases by 11 );
  • 'U': one cell up (the yy -coordinate of the current cell is increased by 11 ).

Your task is to put an obstacle in one cell of the field so that after executing the commands, the robot will return to the original cell of its path (0,0)(0, 0) . Of course, an obstacle cannot be placed in the starting cell (0,0)(0, 0) . It is guaranteed that if the obstacle is not placed, then the robot will not return to the starting cell.

An obstacle affects the movement of the robot in the following way: if it tries to go in a certain direction, and there is an obstacle, then it simply remains in place (the obstacle also remains, that is, it does not disappear).

Find any such cell of the field (other than (0,0)(0, 0) ) that if you put an obstacle there, the robot will return to the cell (0,0)(0, 0) after the execution of all commands. If there is no solution, then report it.

输入格式

The first line contains one integer tt ( 1t5001 \le t \le 500 ) — the number of test cases.

Each test case consists of a single line containing ss — the sequence of commands, which are uppercase Latin letters 'L', 'R', 'D', 'U' only. The length of ss is between 11 and 50005000 , inclusive. Additional constraint on ss : executing this sequence of commands leads the robot to some cell other than (0,0)(0, 0) , if there are no obstacles.

The sum of lengths of all ss in a test doesn't exceed 50005000 .

输出格式

For each test case print a single line:

  • if there is a solution, print two integers xx and yy ( 109x,y109-10^9 \le x,y \le 10^9 ) such that an obstacle in (x,y)(x, y) will force the robot to return back to the cell (0,0)(0, 0) ;
  • otherwise, print two zeroes (i. e. 0 0).

If there are multiple answers, you can print any of them.

输入输出样例

  • 输入#1

    4
    L
    RUUDL
    LLUU
    DDDUUUUU

    输出#1

    -1 0
    1 2
    0 0
    0 1
首页