#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 - the number of nodes in the graph, - the number of directed edges in the graph.
Then lines follow, each line contains three integers , which means that there is a directed edge coming from node to node with a weight of .
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
厦门大学第四届程序设计竞赛 现场决赛