(HDU)1219 -- AC Me

Posted ACDoge

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(HDU)1219 -- AC Me相关的知识,希望对你有一定的参考价值。

题目:http://vjudge.net/problem/HDU-1219

 

这题在循环的时候i<len,写成了i<=len,WA一万次才改出来。

 1 #include <cstdio>
 2 #include <cstring>
 3 #include <cmath>
 4 #include <iostream>
 5 #include <algorithm>
 6 #include <string>
 7 #include <cstdlib>
 8 
 9 using namespace std;
10 
11 int main()
12 {
13     int num[30],len,i;
14     char buf[100010];
15     while(gets(buf)!=NULL)
16     {
17         memset(num,0,sizeof(num));
18         len=strlen(buf);
19         for(i=0;i<len;i++)
20         {
21             if(a<=buf[i]&&buf[i]<=z)
22                 num[buf[i]-a]++;
23         }
24         for(i=0;i<26;i++)
25             printf("%c:%d\n",a+i,num[i]);
26             printf("\n");
27     }
28     return 0;
29 }

 

以上是关于(HDU)1219 -- AC Me的主要内容,如果未能解决你的问题,请参考以下文章

(HDU)1219 -- AC Me

HDU - 1219 AC Me(超级水题)

HDU3247 Resource Archiver(AC自动机+BFS+DP)

HDU4057 Rescue the Rabbit(AC自动机+状压DP)

POJ - 2778 ~ HDU - 2243 AC自动机+矩阵快速幂

HDU2457 DNA repair(AC自动机+DP)