标签:
1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include<cmath> 5 6 using namespace std; 7 8 char s[100010]; 9 int w[26]; 10 11 int main() 12 { 13 int t; 14 int d = 0; 15 int sum; 16 scanf("%d",&t); 17 while(t--) 18 { 19 sum = 0; 20 scanf("%s",&s); 21 memset(w,0,sizeof(w)); 22 for (int i=0;i<strlen(s);i++) 23 { 24 if (w[s[i]-‘a‘] == 0){ 25 sum++; 26 w[s[i]-‘a‘] = 1; 27 }else 28 continue; 29 } 30 printf("Case #%d: %d\n",++d,sum); 31 } 32 return 0; 33 }
思路解析:
这题就是题意的问题。A不出来都是被样例迷惑了!样例毁一生2333333,有时候理解真的比直接敲更有用。
CCPC网络赛,HDU_5842 Lweb and String
标签:
原文地址:http://www.cnblogs.com/xzt6/p/5774782.html