#Lutece0834. If You Know This,You Must Have NO GF

If You Know This,You Must Have NO GF

Migrated from Lutece 834 If You Know This,You Must Have NO GF

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

In software development, Make is a utility that automatically builds executable programs and libraries from source code by reading files called makefiles which specify how to derive the target program. Though integrated development environments and language-specific compiler features can also be used to manage a build process, Make remains widely used, especially in Unix.

Now let's have a look at the grammar of makefile. Please note that in this problem, we have simplified the problem a lot, so read carefully, especially when you are familiar with such things.

In this problem, makefile contains three kinds of statements:

  1. Target: [component ...]

This is a statement to define a target. To build Target, you have to generate all the files in [component ...] at first. Here is an example:

a.o: a.cc b.cc

Which means if you want to generate file a.o, you have to make sure that there are already file a.cc and b.cc in the directory.
Each component(including the target itself) will be a string which is a legal file's name, as aaa or aaa.bbb. They will be separated by some spaces.
A legal file's name will only contain letters (upper case and lower case), numbers and only contain one dot (.).
There won't be two Targets sharing a same file name. Also relations between files won't form a circle. 2. Commands
This is a command shows how to build the Target, usually written after statement 11. Here is an example:

    g++ a.o b.o -o main

Note this kind of commands will have FOUR SPACES at the front of the line.
There maybe two or more commands after statement 11. 3. Comments
Comments begin with character #, which should be ignored. Note that # can appear in any place in the line, and all character after # in the line shall be ignored. Here is an example:

a.o: a.cc b.cc #hello world!

This should be regarded as

a.o: a.cc b.cc

Sometimes you may find a statement is too long to be written in a single line. You can add a \ at the end of the line, indicating that there are still part of statement at the next line. Here is an example:

main: a.o\
    b.o
	g++ a.o b.o -o main

This equals to the statement

main: a.o    b.o
    g++ a.o b.o -o main

Notice that \ will only appear at end of the line and not appear in comments.

Now this is all a makefile will have.

You have a makefile, and you will execute QQ make commands one by one. There are already some files in the directory.

The make command is like this:

make Target

Which will try to generate a file named Target.

If there are no such Target defined in the makefile, or it cannot be built since lack of files. This command will not get executed.

Your task is, after executing each command, how many new files will appear in the directory?

Input

The first line has a number TT (T10T\leq 10) , indicating the number of test cases.

Then some lines come, indicating the content of makefile. A string ==== indicating the end of makefile. each line is no longer than 10001000 characters. the size of makefile will not exceed 1MB1MB.

There are at most 500500 target in the Makefile.

Then comes a single line with a number NN(N500N\leq 500). Which is the number of files that are already in the directory.

Then come NN lines each with a file name.

Then comes a single line with a number QQ(Q500Q\leq 500). Which is the number of command you are going to execute.

Then come QQ lines each with a command, within the pattern make Target.

Output

For test case XX, output Case #X: first, in a single line.

Then for each command, output the number of newly built files in a single line. If the command are not executed, output 00.

There should be a blank line BETWEEN each test case.

Samples

2
main: a.o\
    b.o
    g++ a.o b.o -o main
a.o: a.cc
    g++ a.cc -o a.o -c
b.o: b.cc
    g++ b.cc -o b.o -c
main2: a.o c.o
    g++ a.o c.o -o main2
====
3
a.cc
b.cc
c.o
2
make main
make main2

main: a.o b.o
    g++ a.o b.o -o main
a.o: a.cc
    g++ a.cc -o a.o -c
b.o: b.cc
    g++ b.cc -o b.o -c
main2: a.o c.o
    g++ a.o c.o -o main2
====
2
a.cc
b.cc
2
make main
make main2
Case #1:
3
1

Case #2:
3
0

Resources

2013 ACM-ICPC China Chengdu Provincial Programming Contest