Google Code Jam在线测试题目--Alien Language

21 篇文章 0 订阅

Problem

After years of study, scientists at Google Labs have discovered an alien language transmitted from a faraway planet. The alien language is very unique in that every word consists of exactly L lowercase letters. Also, there are exactly D words in this language.

Once the dictionary of all the words in the alien language was built, the next breakthrough was to discover that the aliens have been transmitting messages to Earth for the past decade. Unfortunately, these signals are weakened due to the distance between our two planets and some of the words may be misinterpreted. In order to help them decipher these messages, the scientists have asked you to devise an algorithm that will determine the number of possible interpretations for a given pattern.

A pattern consists of exactly L tokens. Each token is either a single lowercase letter (the scientists are very sure that this is the letter) or a group of unique lowercase letters surrounded by parenthesis ( and ). For example: (ab)d(dc) means the first letter is either a or b, the second letter is definitely d and the last letter is either d or c. Therefore, the pattern (ab)d(dc) can stand for either one of these 4 possibilities: add, adc, bdd, bdc.

Input

The first line of input contains 3 integers, LD and N separated by a space. D lines follow, each containing one word of length L. These are the words that are known to exist in the alien language. N test cases then follow, each on its own line and each consisting of a pattern as described above. You may assume that all known words provided are unique.

Output

For each test case, output

Case #X: K
where  X  is the test case number, starting from 1, and  K  indicates how many words in the alien language match the pattern.


Limits

Small dataset

1 ≤ L ≤ 10
1 ≤ D ≤ 25
1 ≤ N ≤ 10

Large dataset

1 ≤ L ≤ 15
1 ≤ D ≤ 5000
1 ≤ N ≤ 500

思路L:对于每一个pattern,字典中每一个词与它匹配。

代码:

/*2014-10-16
*zhuangweibiao
*/
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
bool match(string target, string pattern)
{
	int index = 0;
	for(int i = 0; i < pattern.length(); ++i)
	{
		if(pattern[i] == '(')
		{
			bool found = false;
			while(pattern[++i] != ')')
			{
				if(pattern[i] == target[index])
					found = true;
			}
			if(!found)
				return false;
			index++;
		}
		else
		{
			if(pattern[i] != target[index])
				return false;
			index++;
		}
	}
	return true;
}
int main()
{
	ifstream ifile("A-large-practice.in");
	ofstream ofile("match2.txt");
	int L, D, N;
	string str[5001];
	ifile >> L >> D >> N;
	for(int i = 0; i < D; ++i)
		ifile >> str[i];
	string pattern;
	for(int i = 0; i < N; ++i)
	{
		ifile >> pattern;
		int count = 0;
		for(int j = 0; j < D; ++j)
		{
			if(match(str[j], pattern))
				count++;
		}
		ofile << "Case #" << i + 1 << ": " << count << endl;
	}
	return 0;
}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值