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

HDU - 1219 AC Me(超级水题)

时间:2017-01-04 20:32:34      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:code   span   print   turn   函数   eof   ems   运行   mem   

题意:给一句英语句子,求从a-z各出现了几次。

主要是给自己提一个醒for循环中要少调用函数,函数运行需要时间,再加上for循环的时间,很可能时间超限。

 1 #include<stdio.h>
 2 #include<string.h>
 3 #define M 100010
 4 int main(){
 5     char str[M];
 6     int count[M];
 7     while(gets(str)){
 8         memset(count,0,sizeof(count));
 9         int k=strlen(str);//非常重要 
10         for(int i=0;i<k;i++){
11             if(str[i]>=a&&str[i]<=z) count[str[i]-a]++;
12         }
13         for(int i=0;i<26;i++)
14         printf("%c:%d\n",a+i,count[i]);
15         printf("\n");
16     }
17     return 0;
18 }

 

HDU - 1219 AC Me(超级水题)

标签:code   span   print   turn   函数   eof   ems   运行   mem   

原文地址:http://www.cnblogs.com/Leonard-/p/6249993.html

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