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

문제

In their usual clumsy way, the cows are play a version of Yahtzee, the dice-rolling game.  They roll N (1 <= N <= 20) dice, each having S (1 <= S <= 8) sides.  They are curious as to the number of ways a dice roll can meet a particular criterion (like "contains three 2's" or "contains one 2 and two 3's").

Help them learn about probability. Write a program that reads not only N and S but also some expressions that describe their criteria. Count the number ways the expression can be satisfied over the entire set of all possible dice rolls (the entire set of rolls for three two-sided dice is: {1,1,1; 1,1,2; 1,2,1; 1,2,2; 2,1,1; 2,1,2; 2,2,1; 2,2,2};

Expressions comprise combinations of a basic form that expresses the thought "want at least W copies of result R". It looks like this:

WxR

where (0 <= W <= N and 1 <= R <= S). Each test run will supply E expressions (1 <= E <= 20), each of which contains a number 1..10 of the basic forms separated by a '+', which means 'and' (see below). The set of lines expresses the thought that is the 'inclusive or' of each of the lines individually. Thus the pair of expressions shown below means "at least three rolls of five OR both at least one roll of 3 and also at least two rolls of 4":

3x5
1x3+2x4

Here are some of the combinations of four five-sided dice that satisfy the above expression: 5,5,5,1; 4,5,5,5; 3,4,4,2; 3,4,4,3; 3,4,4,5; 4,4,5,3.

Programming note: Be sure to verify that you can read in two integers from one line and a string from the next line. In some languages' I/O schema, this is harder than it looks!

Also note that the total number of dice combinations will never exceed 1,512,768 in the supplied test data.

입력

  • Line 1: Three space-separated integers: N, S, and E
  • Lines 2..E+1: Line i+1 describes expression i as above.

 

출력

  • Line 1: A single integer that is the number of ways the expression(s) can be satisfied by rolling the dice in all combinations.

예제 입력 1

4 5 2
3x5
1x3+2x4

예제 출력 1

63