#Lutece0268. Maze Break
Maze Break
Migrated from Lutece 268 Maze Break
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
One day, TheBeet found that there is a maze in ArXoR's company, deeply hiden in underground. Unfortunately, he was caught while tring to explore it. ArXoR was always a good man, and was going to thrown the curious man into the maze without any food and water.
Of course, TheBeet wanted to escape.
The maze consists rooms numbered and directed tunnels between rooms. Each tunnel has a color and no two of outcoming tunnels of a room have the identical color. There is totally colors, which is numbered .
Before being thrown into the maze, TheBeet was able to dig only one hole to only one room as the exit. But he would never know which room ArXoR would thrown he into. When he was in the maze, he can not recognize which room he was standing in. All he can know is the colored outcoming tunnels of the room where he stood in.
In order to escape, TheBeet must make a sequence of colors. If there is an outcoming tunnel with the same color as the current color in the sequence, he would run through the tunnel, otherwise he would stand still and examine the next tunnel color in the sequence.
By following the whole sequence, if he can stand in the room where he had dig a hole to, he can escape, otherwise, he failed in escaping.
Your task is to computer the minimal length of the sequence of colors which would guarantee TheBeet's escape.
Input
The input contains a single test case.
The first line contains three integers presenting $n m k. (1 \leq n \leq 30, 1 \leq m \leq n \times k, 1 \leq k \leq 10)$
Then m lines follow, each of them contain three integer , which means there is a tunnel of color from room to room $j, (0 \leq i < n, 0 \leq j < n, i != j, 0 \leq c < k)$
Output
Output a single line containing an integer indicating the minimal length of the sequence of colors which would guarantee TheBeet's escape.
If such sequence doesn't exist, output -1
.
Samples
9 8 5
0 1 0
1 3 2
5 4 4
4 3 1
7 6 4
6 3 2
8 2 3
2 3 1
5
Note
TheBeet can always escape through room by following the color sequence no matter which room he was thrown into, and no other shorter sequence exsists.
Resources
厦门大学第四届程序设计竞赛 现场决赛