Chinaunix首页 | 论坛 | 博客
  • 博客访问: 45690
  • 博文数量: 7
  • 博客积分: 1410
  • 博客等级: 上尉
  • 技术积分: 195
  • 用 户 组: 普通用户
  • 注册时间: 2006-12-27 19:37
文章分类
文章存档

2009年(7)

我的朋友
最近访客

分类: Python/Ruby

2009-09-04 13:06:19


Welcome to Code Jam
In the practice contest, you may try as many times as you want.
Small input
10 points
Download C-small.inMore options  
Submit
Large input
23 points
Download C-large.inMore options  
Submit

Problem

So you've registered. We sent you a welcoming email, to welcome you to code jam. But it's possible that you still don't feel welcomed to code jam. That's why we decided to name a problem "welcome to code jam." After solving this problem, we hope that you'll feel very welcome. Very welcome, that is, to code jam.

If you read the previous paragraph, you're probably wondering why it's there. But if you read it very carefully, you might notice that we have written the words "welcome to code jam" several times: 400263727 times in total. After all, it's easy to look through the paragraph and find a 'w'; then find an 'e' later in the paragraph; then find an 'l' after that, and so on. Your task is to write a program that can take any text and print out how many times that text contains the phrase "welcome to code jam".

To be more precise, given a text string, you are to determine how many times the string "welcome to code jam" appears as a sub-sequence of that string. In other words, find a sequence s of increasing indices into the input string such that the concatenation of input[s[0]], input[s[1]], ..., input[s[18]] is the string "welcome to code jam".

The result of your calculation might be huge, so for convenience we would only like you to find the last 4 digits.

Input

The first line of input gives the number of test cases, N. The next N lines of input contain one test case each. Each test case is a single line of text, containing only lower-case letters and spaces. No line will start with a space, and no line will end with a space.

Output

For each test case, "Case #x: dddd", where x is the case number, and dddd is the last four digits of the answer. If the answer has fewer than 4 digits, please add zeroes at the front of your answer to make it exactly 4 digits long.

Limits

1 ≤ N ≤ 100

Small dataset

Each line will be no longer than 30 characters.

Large dataset

Each line will be no longer than 500 characters.

Sample


Input
 

Output
 
3
elcomew elcome to code jam
wweellccoommee to code qps jam
welcome to codejam

Case #1: 0001
Case #2: 0256
Case #3: 0000




def isSubStr(w,b):
    #print w
    #print b
    if(len(w)==0):
        return 1
    else:
        if(len(b)==0):
            
            return 0
        if (w[0]==b[0]):
            
            tf=isSubStr(w[1:],b[1:])
            wf=isSubStr(w,b[1:])
            return tf+wf
        else:
            return isSubStr(w,b[1:])
            
                
FileIn=open("C-large.in","r")

content=FileIn.read()

content=content.split('\n')





matchStr='welcome to code jam'

caseCounter=int(content[0])
print content[0]
#print content
i=0
FileOut=open('result2-l.out','w')

while i<caseCounter:
    
    #print content[i+1]
    #print isSubStr(matchStr,content[i+1])
    result=isSubStr(matchStr,content[i+1])
    result=str(result)
    if len(result)>4:
        result=result[(len(result)-4):]
    else:
        result=result.rjust(4,'0')
    FileOut.write("Case #"+str(i+1)+": "+result+'\n')
    i=i+1
    
    
FileOut.close()



    


    

阅读(533) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

yizhonglee2009-09-04 13:15:49

用python做递归好像效率很差,大文件在5分钟内没跑出来 放弃了。这个问题应该可以使用全局变量进行优化,减少递归引起的对象复制开销。