#Lutece0272. The Lightest Cycle

The Lightest Cycle

Migrated from Lutece 272 The Lightest Cycle

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

Given a directed weighted graph who has at least three nodes, can you find the minimal directed weighted cycle with at least three nodes?

Input

The input contains a single test case.

In the first line there is two integer nn - the number of nodes in the graph, mm - the number of directed edges in the graph. (0<n100,0mn2)(0 < n \leq 100, 0 \leq m \leq n^2)

Then mm lines follow, each line contains three integers ii jj kk, which means that there is a directed edge coming from node ii to node jj with a weight of k(0k<215)k (0 \leq k < 2^{15}).

Output

You should output a single line with a single integer presenting the weight of the cycle you have found or -1 (without quotes) if there isn't any.

Samples

5 7
4 0 19
0 3 20
4 3 50
2 3 1
3 1 10
1 4 2
1 2 39
50

Resources

厦门大学第四届程序设计竞赛 现场决赛