300722: CF137A. Postcards and photos

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Postcards and photos

题意翻译

给定一个只含"C","P"的字符串,求这个字符串最少可以拆成几个长度不大于5的含有相同字符的字符串。

题目描述

Polycarpus has postcards and photos hung in a row on the wall. He decided to put them away to the closet and hang on the wall a famous painter's picture. Polycarpus does it like that: he goes from the left to the right and removes the objects consecutively. As Polycarpus doesn't want any mix-ups to happen, he will not carry in his hands objects of two different types. In other words, Polycarpus can't carry both postcards and photos simultaneously. Sometimes he goes to the closet and puts the objects there, thus leaving his hands free. Polycarpus must put all the postcards and photos to the closet. He cannot skip objects. What minimum number of times he should visit the closet if he cannot carry more than 5 items?

输入输出格式

输入格式


The only line of the input data contains a non-empty string consisting of letters "С" and "P" whose length does not exceed $ 100 $ characters. If the $ i $ -th character in the string is the letter "С", that means that the $ i $ -th object (the numbering goes from the left to the right) on Polycarpus' wall is a postcard. And if the $ i $ -th character is the letter "P", than the $ i $ -th object on the wall is a photo.

输出格式


Print the only number — the minimum number of times Polycarpus has to visit the closet.

输入输出样例

输入样例 #1

CPCPCPC

输出样例 #1

7

输入样例 #2

CCCCCCPPPPPP

输出样例 #2

4

输入样例 #3

CCCCCCPPCPPPPPPPPPP

输出样例 #3

6

输入样例 #4

CCCCCCCCCC

输出样例 #4

2

说明

In the first sample Polycarpus needs to take one item to the closet 7 times. In the second sample Polycarpus can first take 3 postcards to the closet; then 3 more. He can take the 6 photos that are left in the similar way, going to the closet twice. In the third sample Polycarpus can visit the closet twice, both times carrying 3 postcards. Then he can take there 2 photos at once, then one postcard and finally, he can carry the last 10 photos if he visits the closet twice. In the fourth sample Polycarpus can visit the closet twice and take there all 10 postcards (5 items during each go).

Input

题意翻译

给定一个只含"C","P"的字符串,求这个字符串最少可以拆成几个长度不大于5的含有相同字符的字符串。

加入题单

算法标签: