首页 > 其他 > 详细

codechef Holes in the text 题解

时间:2014-05-03 15:48:52      阅读:469      评论:0      收藏:0      [点我收藏+]

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

简单的查找问题, 继续使用buffer解决本题。

#include <stdio.h>
#include <iostream>
using namespace std;

int Holesinthetext()
{
	int T, c = 0, ho = 0;
	scanf("%d\n", &T);
	char buffer[4000];
	char holes[7] = {‘A‘,‘D‘,‘O‘, ‘R‘, ‘P‘, ‘B‘, ‘Q‘};
	while ((c = fread(buffer, 1, 4000, stdin)) > 0)
	{
		for (int i = 0; i < c; i++)
		{
			if (buffer[i] == ‘\n‘)
			{
				printf("%d\n", ho);
				ho = 0;
			}
			else
			{
				for (int j = 0; j < 7; j++)
				{
					if (buffer[i] == holes[j]) ho++;
				}
				if (buffer[i] == ‘B‘) ho++;
			}
		}
	}
	if (ho != 0) printf("%d", ho);
	return 0;
}



codechef Holes in the text 题解,布布扣,bubuko.com

codechef Holes in the text 题解

原文:http://blog.csdn.net/kenden23/article/details/24885845

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!