Google Code Jam Notes - Alien Language - Java

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

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


Analysis:
Because L is no more than 15, and also the word is composed of 26 characters. A boolean[15][26] is used to mark the acceptable letter at each location. Then we parse each input and compare it to the existing words.

Time complexity: O(L*D*N)

My solution: (Your opinion is highly appreciated)

package codeJam.google.com;

import java.io.BufferedReader;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;

/**
 * @author Zhenyi 2013 Dec 21, 2013 9:29:11 AM
 */
public class AlienLanguage {

    public static void main(String[] args) throws IOException {
        BufferedReader in = new BufferedReader(new FileReader(
                "C:/Users/Zhenyi/Downloads/A-small-practice.in"));
        FileWriter out = new FileWriter(
                "C:/Users/Zhenyi/Downloads/A-small-practice.out");
        // BufferedReader in = new BufferedReader(new
        // FileReader("C:/Users/Zhenyi/Downloads/A-large-practice.in"));
        // FileWriter out = new
        // FileWriter("C:/Users/Zhenyi/Downloads/A-large-practice.out");
        String[] st = new String(in.readLine()).split("\\s");
        int L = new Integer(st[0]);
        int D = new Integer(st[1]);
        int N = new Integer(st[2]);
        char words[][] = new char[D][L];
        for (int i = 0; i < D; i++) {
            words[i] = new String(in.readLine()).toCharArray();
        }

        for (int cases = 1; cases <= N; cases++) {
            char[] pattern = new String(in.readLine()).toCharArray();
            boolean[][] P = new boolean[15][26];
            int foundLetter = 0;
            int pos = 0;
            while (foundLetter < L) {
                if (pattern[pos] != '(') {
                    P[foundLetter][pattern[pos] - 'a'] = true;
                    foundLetter++;
                    pos++;
                } else {
                    while (pattern[++pos] != ')') {
                        P[foundLetter][pattern[pos] - 'a'] = true;
                    }
                    foundLetter++;
                    pos++;
                }
            }

            int result = 0;
            for (int i = 0; i < D; i++) {
                boolean match = true;
                for (int j = 0; j < L; j++) {
                    if (!P[j][words[i][j] - 'a']) {
                        match = false;
                    }
                }
                if (match) {
                    result++;
                }
            }

            out.write("Case #" + cases + ": " + result + "\n");

        }
        in.close();
        out.flush();
        out.close();
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值