Friday 1 November 2013

Holes in the text - Solution


Problem Statement:
Chef wrote some text on a piece of paper and now he wants to know how many holes are in the text. What is a hole? If you think of the paper as the plane and a letter as a curve on the plane, then each letter divides the plane into regions. For example letters "A", "D", "O", "P", "R" divide the plane into two regions so we say these letters each have one hole. Similarly, letter "B" has two holes and letters such as "C", "E", "F", "K" have no holes. We say that the number of holes in the text is equal to the total number of holes in the letters of the text. Help Chef to determine how many holes are in the text.

Input

The first line contains a single integer T <= 40, the number of test cases. T test cases follow. The only line of each test case contains a non-empty text composed only of uppercase letters of English alphabet. The length of the text is less then 100. There are no any spaces in the input.

Output

For each test case, output a single line containing the number of holes in the corresponding text.

Example

Input:
2
CODECHEF
DRINKEATCODE
 
Output:
2
5

Solution:
#include<stdio.h>
int countHoles(char*);
int arr[26]={0};
int main()
{
        int t,i;
        char str[100];
        arr[0]=1;
        arr[1]=2;
        arr[3]=1;
        arr[14]=1;
        arr[15]=1;
        arr[16]=1;
        arr[17]=1;
 
        scanf("%d",&t);
        for(i=0;i<t;i++)
        {
               scanf("%s",str);
               printf("%d\n",countHoles(str));
        }
        return 0;
}
 
int countHoles(char*str)
{
        int counter=0,i;
        for(i=0;str[i];i++)
               counter+=arr[str[i]-65];
        return counter;
}

No comments:

Post a Comment