CF1578L.Labyrinth

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

In a dream, Lucy found herself in a labyrinth. This labyrinth consists of nn rooms, connected by mm passages ( ii -th passage is wiw_i 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 ii she becomes wider by cic_i 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 11 . 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 11 . 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, nn and mm ( 2n105;n1m1052 \le n \le 10^5; n - 1 \le m \le 10^5 ) — the number of rooms and the number of passages.

The second line contains nn integers — cic_i ( 1ci1091 \le c_i \le 10^9 ).

Next mm lines contain three integers each — aia_i , bib_i and wiw_i ( 1ai,bin;aibi;1wi1091 \le a_i, b_i \le n; a_i \ne b_i; 1 \le w_i \le 10^9 ) describing passage that connects rooms aia_i and bib_i and is wiw_i 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 .

输入输出样例

  • 输入#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
首页