CF404E.Maze 1D
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Valera has a strip infinite in both directions and consisting of cells. The cells are numbered by integers. The cell number 0 has a robot.
The robot has instructions — the sequence of moves that he must perform. In one move, the robot moves one cell to the left or one cell to the right, according to instructions. Before the robot starts moving, Valera puts obstacles in some cells of the strip, excluding cell number 0 . If the robot should go into the cell with an obstacle according the instructions, it will skip this move.
Also Valera indicates the finish cell in which the robot has to be after completing the entire instructions. The finishing cell should be different from the starting one. It is believed that the robot completed the instructions successfully, if during the process of moving he visited the finish cell exactly once — at its last move. Moreover, the latter move cannot be skipped.
Let's assume that k is the minimum number of obstacles that Valera must put to make the robot able to complete the entire sequence of instructions successfully and end up in some finishing cell. You need to calculate in how many ways Valera can choose k obstacles and the finishing cell so that the robot is able to complete the instructions successfully.
输入格式
The first line contains a sequence of characters without spaces s1s2... sn (1<=n<=106) , consisting only of letters "L" and "R". If character si equals "L", then the robot on the i -th move must try to move one cell to the left. If the si -th character equals "R", then the robot on the i -th move must try to move one cell to the right.
输出格式
Print a single integer — the required number of ways. It's guaranteed that this number fits into 64-bit signed integer type.
输入输出样例
输入#1
RR
输出#1
1
输入#2
RRL
输出#2
1
说明/提示
In the first sample Valera mustn't add any obstacles and his finishing cell must be cell 2 .
In the second sample, Valera must add an obstacle in cell number 1 , and his finishing cell must be cell number −1 . In this case robot skips the first two moves and on the third move he goes straight from the starting cell to the finishing one. But if Valera doesn't add any obstacles, or adds an obstacle to another cell, then the robot visits the finishing cell more than once.