B - Diagonal Walking

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.

Input

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

Output

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

Examples

Input

5
RUURU

Output

3

Input

17
UUURRRRRUUURURUUU

Output

13

Note

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

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

#include<bits/stdc++.h>
using namespace std;
char a[110]; 
int main(){
	int n;
	cin>>n;
	cin>>a;
	int num=0;
	for(int i=0;i<n-1;i++){
		if(a[i]!=a[i+1]){
			num++;
			i++;
		}
	}
	cout<<n-num;
	return 0;
}

一看这道题题目由于也没讲是复杂还是简单,我想的是从一边开始遍历,但是我想既然两边一样的话,还有一种可能,就是从两边同时往中间,但实际上,一边已经包含了最优情况,我想的情况虽然是特例但是不符合条件。

就是想多了而已。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值