Palacinke
의견: 0
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.
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 \(5557\).
The first line contains two integers \(N\) and \(M\) (\(1 \le N \le 25\), \(1 \le M \le 500\)), 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\) (directed from \(u\) to \(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 \le T \le 1\,000\,000\,000\)), time until Ana's friends arrive, in minutes.
The first and only line of output should contain the number of different ways Ana can buy the ingredients, modulo \(5557\).
| 서브태스크 | 점수 | 설명 |
|---|---|---|
Test 1 | 10점 | None |
Test 2 | 10점 | None |
Test 3 | 10점 | None |
Test 4 | 10점 | None |
Test 5 | 10점 | None |
Test 6 | 10점 | None |
Test 7 | 10점 | None |
Test 8 | 10점 | None |
Test 9 | 10점 | None |
Test 10 | 10점 | None |
3 3
1 2 BMJ
2 3 MJP
3 1 JPB
533 4
1 2 B
2 1 P
1 3 J
3 1 M
825 7
1 2 B
2 4 M
1 3 J
3 4 MB
4 1 JP
4 5 J
5 1 P
75평가 및 의견
Palacinke
Log in to rate problems.
아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.
풀이 제출
Palacinke