免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2451 | 回复: 0
打印 上一主题 下一主题

Code Jam Qualification Round -A [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-09-04 13:04 |只看该作者 |倒序浏览

Alien Language
   
   
      
      In the practice contest, you may try as many times as you want.
      Small input
10 points

Download A-small.inMore options    ▼SubmitYour submission was received. You can still resubmit for  minutes.
Only your last submission counts.Time Remaining:   Input: A-small-practice.in.your output file:source file(s):  removeAdd another filesource file(s):    not needed for the practice contest  Large input
23 points

Download A-large.inMore options    ▼SubmitYour submission was received. You can still resubmit for  minutes.
Only your last submission counts.Time Remaining:   You may resubmit this multiple times within the remaining
time-frame. Only your last submission will count.your output file:source file(s):  removeAdd another filesource file(s):    not needed for the practice contest  
      
      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
Sample
Input

Output

3 5 4
abc
bca
dac
dbc
cba
(ab)(bc)(ca)
abc
(abc)(abc)(abc)
(zyx)bc
Case #1: 2
Case #2: 1
Case #3: 3
Case #4: 0
inputstr="""3 5 4
abc
bca
dac
dbc
cba
(ab)(bc)(ca)
abc
(abc)(abc)(abc)
(zyx)bc"""
FileIn=open("A-large.in","r")
content=FileIn.read()
content=content.split('\n')
print content[0]
line=content[0].split(' ')
wordLen=int(line[0])
caseCounter=int(line[1])
patternCounter=int(line[2])
index=1
caseList=[]
for i in range(caseCounter):
    caseList.append(content[index])
    index=index+1
patternList=[]
for j in range(patternCounter):
    pattern=[]
    line=content[index]
    k=0
    while(klen(line)):
        tmpPattern=[]
        if(line[k]=='('):
            while(line[k]!=')'):
                tmpPattern.append(line[k])
                k=k+1
            k=k+1
        else:
            tmpPattern.append(line[k])
            k=k+1
        pattern.append(tmpPattern)
   
   
    """
    line=content[index]
    line=line.split('(')
    pattern=[]
    for k in range(len(line)):
        if(line[k]==''):
            pass
        else:
            if(line[k].endswith(')')):
                tmpPattern=[]
                for v in range(len(line[k])):
                    if(line[k][v]==')'):
                        continue
                    else:
                        tmpPattern.append(line[k][v])
                pattern.append(tmpPattern)
               
               
            else:
               
                for v in range(len(line[k])):
                    tmpPattern=[]
                    tmpPattern.append(line[k][v])
                    pattern.append(tmpPattern)
   
    """               
    if(len(pattern)>wordLen):
        print "ERROR detected!"
        print pattern
        print len(pattern)
        print line
    patternList.append(pattern)
    index=index+1
  
#print patternList
FileOut=open("result.out",'w')
   
for j in range(len(patternList)):
    matchCounter=0
    for i in range(len(caseList)):
      
        matchFlag=True
        #print "~~~~~"
        #print patternList[j]
        #print "xxxxx"
        #print caseList
        for k in range(len(caseList)):
            if(patternList[j][k].count(caseList[k])==0):
                #print patternList[j][k]
                #print caseList[k]
                matchFlag=False   
                break
           
        if matchFlag==True:
            matchCounter=matchCounter+1
    FileOut.write("Case #"+str(j+1)+": "+str(matchCounter)+"\n")
FileOut.close()
#print "~~~~~~~~~~~~~~`"
#print len(caseList)
      
   
   



本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/29089/showart_2045363.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP