天天看点

GZHU18级寒假训练:Cancer's Trial E

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 <iostream>
#include <string>
using namespace std;
int on[200], off[200];
int min(int a, int b) 
{
	return a < b ? a : b;
}
int main()
{
	int n;
	cin >> n;
	while (n--)
	{
		memset(on, 0,sizeof(on));
		memset(off, 0, sizeof(off));
		string a;
		cin >> a;
		int l = a.length();
		on[0] = 1;
		off[0] = 0;
		for(int i=0;i<l;i++)
		{
			if(a[i]>=97&&a[i]<=122)
			{ 
				on[i + 1] = min(on[i] + 2, off[i] + 2);
				off[i + 1] = min(on[i] + 2, off[i] + 1);
			}
			else if (a[i] >= 65 && a[i] <= 90)
			{
				on[i + 1] = min(on[i] + 1, off[i] + 2);
				off[i + 1] = min(on[i] + 2, off[i] + 2);
			}
		}
		cout << min(off[l], on[l]+1) << endl;
	}
}