zoukankan      html  css  js  c++  java
  • CodeForces 137A

    Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u

    Description

    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?

    Input

    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.

    Output

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

    Sample Input

    Input
    CPCPCPC
    Output
    7
    Input
    CCCCCCPPPPPP
    Output
    4
    Input
    CCCCCCPPCPPPPPPPPPP
    Output
    6
    Input
    CCCCCCCCCC
    Output
    2

    Hint

    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).

     1 #include<stdio.h>
     2 #include<string.h>
     3 
     4 int main()
     5 {
     6     char CP[100];
     7     int num = 0,allnum = 0,i;
     8     scanf("%s",CP);
     9     for(i = 0;i < strlen(CP);i++)//被提醒strlen什么的不要放在里面会加大时间复杂度
    10     {
    11         if(num <= 5 && CP[i] == CP[i+1])
    12             num++;
    13          if(num == 5 || CP[i] != CP[i+1]) 
    14         {
    15             allnum++;
    16             num = 0;
    17         }
    18     }
    19     printf("%d",allnum);
    20     return 0;
    21 }
     
  • 相关阅读:
    使用SO_REVTIMEO套接字选项为recvfrom设置超时
    使用select为描述符设置超时
    套接字超时设置方法
    使用SIGALARM为recvfrom设置超时
    使用SIGALARM为connect设置超时
    20200410 阿里巴巴Java开发手册
    20200409 Vue 视频学习【归档】
    20200319 Spring MVC 官方文档【归档】
    20200319 Spring Web MVC 2-5
    20200319 Spring Web MVC 1
  • 原文地址:https://www.cnblogs.com/lwy-kitty/p/3194198.html
Copyright © 2011-2022 走看看