CF954A.Diagonal Walking

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Mikhail walks on a 2D plane. He can go either up or right. You are given a sequence of Mikhail's moves. He thinks that this sequence is too long and he wants to make it as short as possible.

In the given sequence moving up is described by character U and moving right is described by character R. Mikhail can replace any pair of consecutive moves RU or UR with a diagonal move (described as character D). After that, he can go on and do some other replacements, until there is no pair of consecutive moves RU or UR left.

Your problem is to print the minimum possible length of the sequence of moves after the replacements.

输入格式

The first line of the input contains one integer nn ( 1<=n<=1001<=n<=100 ) — the length of the sequence. The second line contains the sequence consisting of nn characters U and R.

输出格式

Print the minimum possible length of the sequence of moves after all replacements are done.

输入输出样例

  • 输入#1

    5
    RUURU
    

    输出#1

    3
    
  • 输入#2

    17
    UUURRRRRUUURURUUU
    

    输出#2

    13
    

说明/提示

In the first test the shortened sequence of moves may be DUD (its length is 33 ).

In the second test the shortened sequence of moves can be UUDRRRDUDDUUU (its length is 1313 ).

首页