码迷,mamicode.com
首页 > 其他好文 > 详细

度度熊找子串

时间:2018-04-21 19:32:04      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:turn   http   %s   eid   com   .com   pac   max   scanf   

题目链接: http://exercise.acmcoder.com/online/online_judge_ques?ques_id=3364&konwledgeId=40

解题思路: 这种题目是真的没意思。

 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 
 4 const int MAXN = 100005;
 5 typedef long long LL;
 6 char s[MAXN];
 7 int ans[256];
 8 int main()
 9 {
10 #ifndef ONLINE_JUDGE
11     freopen("test.txt","r",stdin);
12 #endif // ONLINE_JUDGE
13     int Case;
14     // scanf("%d",&Case);
15     //scanf("%s",s);
16     //printf("%d\n",strlen(s));
17     memset(ans,0,sizeof(ans));
18     int cnt=0;
19     char ch;
20     char tmp;
21     for (int i=0;(tmp=getchar())!=\n;++i)
22     {
23         if (i==0) cnt=1,ch=tmp;
24         else if (tmp==ch) ++cnt;
25         else {ans[ch]=max(ans[ch],cnt);cnt=1;ch=tmp;}
26     }
27     ans[ch]=max(ans[ch],cnt);
28     int res=0;
29     for (int i=a;i<=z;++i) res+=ans[i];
30     printf("%d\n",res);
31     return 0;
32 }

 

度度熊找子串

标签:turn   http   %s   eid   com   .com   pac   max   scanf   

原文地址:https://www.cnblogs.com/djingjing/p/8902331.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!