시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB0000.000%

문제

Barry Liam is a chemistry student at Uranium University (good ol’ UU), and does pretty well except in one area — balancing chemical equations. As I’m sure you recall from your last chemistry class, a chemical reaction can be represented by a chemical equation, with the reactants on the left and the products on the right, separated by an arrow. For example, the chemical equation to form aluminum oxide out of aluminum and oxygen is

Al + O2 → Al2O3.

However, the above equation is not balanced - there is one aluminum (Al) atom on the left hand side and two on the right, and there are two oxygen (O) atoms on the left and three on the right. A properly balanced version of this equation would be:

4Al + 3O2 → 2Al2O3.

Note that not only are all the coefficients positive integers, but the greatest common divisor of all of them is 1 (two requirements when balancing). While Barry understands all this, he is flummoxed when asked to do it, especially when asked to balance equations such as:

Fe2(SO4)3 + KSCN → K3Fe(SCN)6 + K2SO4.

Notice here that atoms in parentheses are all multiplied by the number that follows (so in this equation there are 12 oxygen atoms on the left and six carbon (C) atoms on the right, for example). Also, a symbol appears at most once in any reactant or product. Barry would like to ask his roommate for help, but he’s a Ballet major who thinks balancing equations have something to do with dancing en pointe (actually, he thought Barry said “Balanchine equations”). I guess Barry will have to look for a new major, unless you can help him.

입력

Each test case will consist of a single line starting with two positive integers r and p indicating the number of reactants and products (the maximum value for each is 10). There will then follow the r reactants. Each reactant will consist of one or more terms, where each term is either a single chemical symbol, a single chemical symbol followed by an integer ≥ 2, or a set of parentheses around a term, followed by an integer ≥ 2. All chemical symbols consist of one or two alphabetic characters, only the first of which is capitalized. Following the r reactants will be the p products which follow the same rules as the reactants. There will be no more than 20 different chemical symbols in any test case. A line containing two zeros will terminate the input.

출력

For each test case, you should output the appropriate coefficients needed to balance the equation, listed in the order that the reactants and products are given. Use a single space to separate the values, and preface each with the case number, using the format shown below. If an equation cannot be balanced correctly or uniquely (see the last sample input, which has solutions 1 2 1 1, 1 3 1 2, 1 4 1 3, etc.), you should output the word No.

예제 입력 1

2 1 Al O2 Al2O3
2 2 Fe2(SO4)3 KSCN K3Fe(SCN)6 K2SO4
1 1 CO2 CO
2 2 A B AB B
0 0

예제 출력 1

Case 1: 4 3 2
Case 2: 1 12 2 3
Case 3: No
Case 4: No