博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
水题 CodeForces 137A Postcards and photos
阅读量:6047 次
发布时间:2019-06-20

本文共 901 字,大约阅读时间需要 3 分钟。

 

1 /* 2     水! 3 */ 4 #include 
5 #include
6 #include
7 using namespace std; 8 9 const int MAXN = 1e2 + 10;10 const int INF = 0x3f3f3f3f;11 char s[MAXN];12 13 int main(void) //CodeForces 137A Postcards and photos14 {15 // freopen ("E.in", "r", stdin);16 17 while (scanf ("%s", s) == 1)18 {19 int len = strlen (s);20 int ans = 0; int i = 0;21 while (i < len)22 {23 char ch = s[i]; int cnt = 1;24 while (cnt < 5 && i < len)25 {26 if (s[i+1] == ch)27 {28 ++cnt; ++i;29 }30 else break;31 }32 ans++; i++;33 }34 35 printf ("%d\n", ans);36 }37 38 return 0;39 }

 

转载于:https://www.cnblogs.com/Running-Time/p/4644710.html

你可能感兴趣的文章
存储过程中拼接的变量和点的问题
查看>>
ASP.NET那点不为人知的事(一)
查看>>
3.16
查看>>
表单文件上传与文件下载
查看>>
下午考
查看>>
创建字符设备的三种方法
查看>>
走在网页游戏开发的路上(六)
查看>>
nginx 配置的server_name参数(转)
查看>>
Uva592 Island of Logic
查看>>
C++基础代码--20余种数据结构和算法的实现
查看>>
footer固定在页面底部的实现方法总结
查看>>
nginx上传文件大小
查看>>
HDU 2243 考研路茫茫——单词情结(自动机)
查看>>
Dubbo OPS工具——dubbo-admin & dubbo-monitor
查看>>
Dungeon Master ZOJ 1940【优先队列+广搜】
查看>>
Delphi 中的 XMLDocument 类详解(5) - 获取元素内容
查看>>
2013年7月12日“修复 Migration 测试发现的 Bug”
查看>>
学习vue中遇到的报错,特此记录下来
查看>>
CentOS7 编译安装 Mariadb
查看>>
jstl格式化时间
查看>>