Hide

Problem L
Palačinke

Ana has a couple of classmates coming over for crêpes (known as palačinke in Croatian). They are coming in $T$ minutes, and Ana just found out that she has neither one of the four required ingredients (flour, milk, eggs and jam). She hops into her car and drives around her neighbourhood buying supplies.

Her neighbourhood contains $N$ crossroads numbered $1$ to $N$, and $M$ one way roads connecting them. Ana starts on crossroad $1$. On each road there is exactly one shop, selling some, maybe all, ingredients.

Ana needs $1$ minute to drive down any given road if she does not stop in the shop, or $2$ minutes if she does. She needs to obtain all ingredients and drive back to crossroad one in time. She likes to compare shop prices so she may enter a shop even if she already has all ingredients.

Consider the example of Figure 1 with $5$ crossroads and $7$ roads.

\includegraphics[width=0.2\textwidth ]{palacinke.png}
Figure 1: Diagram of roads and shops

Ana can make the ingredient run in $5$ different ways, as shown in Table 1.

1. minute

2. minute

3.minute

4.minute

5.minute

6.minute

7.minute

$1 \to 3$

$3\to \text {shop}\to 4$

$4\to \text {shop}\to 1$

   

$1\to \text {shop}\to 2$

$2\to \text {shop}\to 4$

$4\to \text {shop}\to 1$

 

$1\to \text {shop}\to 3$

$3\to \text {shop}\to 4$

$4\to \text {shop}\to 1$

 

$1\to \text {shop}\to 3$

$3\to \text {shop}\to 4$

$4\to 5$

$5\to \text {shop}\to 1$

$1\to 3$

$3\to \text {shop}\to 4$

$4\to \text {shop}\to 5$

$5\to \text {shop}\to 1$

Table 1: Ways to do the ingredient run

Write a program that will calculate the number of different ways Ana can buy the ingredients and return home in $T$ minutes or less. Since this number can be very large, output it modulo $5\, 557$.

Input

The first line contains two integers $N$ and $M$ ($1 \leq N \leq 25$, $1 \leq M \leq 500$), the number of crossroads and roads.

Each of the next $M$ lines contains two different integers $u$ and $v$ and a string $s$, separated by exactly one space. They describe a road connecting crossroads $u$ and $v$, and the shop located on the road selling ingredients $s$.

The string $s$ will contain between $1$ and $4$ uppercase characters. Character ‘B’ for flour, ‘J’ for eggs, ‘M’ for milk and ‘P’ for jam.

There are at most two direct roads between two crossroads, and only if they are in opposite directions.

The last line contains one integer $T$ ($1 \leq T \leq 1\, 000\, 000\, 000$), time until Ana’s friends arrive, in minutes.

Output

The first and only line of output should contain the number of different ways Ana can buy the ingredients, modulo $5\, 557$.

Sample Input 1 Sample Output 1
3 3
1 2 BMJ
2 3 MJP
3 1 JPB
5
3
Sample Input 2 Sample Output 2
3 4
1 2 B
2 1 P
1 3 J
3 1 M
8
2
Sample Input 3 Sample Output 3
5 7
1 2 B
2 4 M
1 3 J
3 4 MB
4 1 JP
4 5 J
5 1 P
7
5

Please log in to submit a solution to this problem

Log in