How to Type

How to Type

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 868    Accepted Submission(s): 373


Problem Description
Pirates have finished developing the typing software. He called Cathy to test his typing software. She is good at thinking. After testing for several days, she finds that if she types a string by some ways, she will type the key at least. But she has a bad habit that if the caps lock is on, she must turn off it, after she finishes typing. Now she wants to know the smallest times of typing the key to finish typing a string.
 


Input
The first line is an integer t (t<=100), which is the number of test case in the input file. For each test case, there is only one string which consists of lowercase letter and upper case letter. The length of the string is at most 100.
 


Output
For each test case, you must output the smallest times of typing the key to finish typing this string.
 


Sample Input
3 Pirates HDUacm HDUACM
#include <stdio.h>
#include
<string.h>

int main( )
{
int T, i, len, cnt, f1;
char str[110];
scanf(
"%d", &T);
while(T--) {
scanf(
"%s",str);
len
= strlen(str);
f1
= cnt = i = 0;
while( i < len) {
//如果打开了大写, 后面有两个小写字母以上 f = 0
if(f1 && str[i] >= 'a' && str[i] <= 'z') {
if ( i < len - 1 && str[i+1] >= 'a' && str[i+1] <= 'z' || i == len -1)
f1
= 0;
++cnt;
}
else if (f1 == 0 && str[i] >= 'A' && str[i] <= 'Z') {
if ( i < len - 1 && str[i+1] >='A' && str[i + 1] <= 'Z')
f1
= 1;
++cnt;
}
++i;
}
if (f1)
cnt
++;
printf(
"%d\n", cnt + len);
}
}

  

 

posted on 2011-09-01 11:15  more think, more gains  阅读(206)  评论(0编辑  收藏  举报

导航