CF1578L.Labyrinth
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
In a dream, Lucy found herself in a labyrinth. This labyrinth consists of n rooms, connected by m passages ( i -th passage is wi cm wide). Each passage can be traversed in both directions. It is guaranteed that it is possible to get from any room to any other room. But this is not an ordinary labyrinth — each room in this labyrinth contains a magic candy. When Lucy eats this magic candy, she is getting wider. Specifically, if she eats candy from room i she becomes wider by ci cm. Note that she is not obliged to eat candy the first time she visits a particular room, but she can eat each candy only once.
Unfortunately, passages in this labyrinth are pretty narrow, so after eating some candy, Lucy can get too wide and will not be able to traverse them — her width should not be greater than the width of the corresponding passage.
Lucy starts her journey in a room number 1 . She wants to eat all the candies. After that, she will just wake up, so she does not have to be able to return to the room 1 . She realizes that with her current width, she may not be able to do so, so she plans a workout before embarking on her journey. Lucy wants to know if it is possible to start with some positive width and still eat all the candies. If yes, then what is the maximal starting width with which it is possible.
输入格式
The first line contains two integers, n and m ( 2≤n≤105;n−1≤m≤105 ) — the number of rooms and the number of passages.
The second line contains n integers — ci ( 1≤ci≤109 ).
Next m lines contain three integers each — ai , bi and wi ( 1≤ai,bi≤n;ai=bi;1≤wi≤109 ) describing passage that connects rooms ai and bi and is wi cm wide. It is guaranteed that the resulting labyrinth is connected and there is at most one passage between any pair of rooms.
输出格式
If it is possible to eat all the candies, output the maximal possible starting width, otherwise output −1 .
输入输出样例
输入#1
3 3 1 2 3 1 2 4 1 3 4 2 3 6
输出#1
3
输入#2
2 1 1 1 1 2 1
输出#2
-1