2041.Santa Claus and Robot

Time Limit: 1s Memory Limit: 256MB

Santa Claus has Robot which lives on the infinite grid and can move along its lines. He can also, having a sequence of m points p1,p2,...,pm with integer coordinates, do the following: denote its initial location by p0. First, the robot will move from p0 to p1 along one of the shortest paths between them (please notice that since the robot moves only along the grid lines, there can be several shortest paths). Then, after it reaches p1, it'll move to p2, again, choosing one of the shortest ways, then to p3, and so on, until he has visited all points in the given order. Some of the points in the sequence may coincide, in that case Robot will visit that point several times according to the sequence order.While Santa was away, someone gave a sequence of points to Robot. This sequence is now lost, but Robot saved the protocol of its unit movements. Please, find the minimum possible length of the sequence.

Input Format(From the terminal/stdin)

Input The first line of input contains the only positive integer n (1 \le n \le 2 \cdot 105) which equals the number of unit segments the robot traveled. The second line contains the movements protocol, which consists of n letters, each being equal either L, or R, or U, or D. k-th letter stands for the direction which Robot traveled the k-th unit segment in: L means that it moved to the left, R- to the right, U- to the top and D- to the bottom. Have a look at the illustrations for better explanation.

Output Format(To the terminal/stdout)

Output The only line of input should contain the minimum possible length of the sequence.

Sample Input 1

Copy
4
RURD
 \n
    \n

Sample Output 1

Copy
2
 \n

Sample Input 2

Copy
6
RRULDD
 \n
      \n

Sample Output 2

Copy
2
 \n

Sample Input 3

Copy
26
RRRULURURUULULLLDLDDRDRDLD
  \n
                          \n

Sample Output 3

Copy
7
 \n

Sample Input 4

Copy
3
RLL
 \n
   \n

Sample Output 4

Copy
2
 \n

Sample Input 5

Copy
4
LRLR
 \n
    \n

Sample Output 5

Copy
4
 \n

Hints

The illustrations to the first three tests are given below.2041_1.png2041_2.png2041_3.pngThe last example illustrates that each point in the sequence should be counted as many times as it is presented in the sequence.

Submit

请先 登录

© 2025 FAQs