Problem A. Alien Language
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, L, D 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
题目大体意思是求所给字符串与多少词典中的字符串匹配
我的解答(Python):
input = open('A.in')
output = open ('A.out','w')
nL=((input.readline()).rstrip()).split(' ')
L=int(nL[0])
D=int(nL[1])
N=int(nL[2])
wordL=[]
for i in range(0,D):
word=(input.readline()).rstrip()
wordL.append(word)
#print wordL
for i in range(0,N):
j=0
k=0
tWord=[]
sWord=(input.readline()).rstrip()
while(j='a' and sWord[k]<='z':
tWord.append(sWord[k])
k+=1
j+=1
outcount=0
for m in range(0,D):
incount=0
for n in range(0,L):
if(wordL[m][n] in tWord[n]):
incount+=1
if incount==L:
outcount+=1
output.write('Case #%d: %d\n'%(i+1,outcount))
版权声明:本文版权属于作者 plumes,并受法律保护。
本作品采用知识共享「署名 - 非商业性使用 - 相同方式共享 3.0 未本地化版本」许可协议进行许可。