#414
Unrated
Shortcut
시간 제한
2s
메모리 제한
1024MB
제출
0
정답
0
맞힌 사람
0
정답 비율
0.0%

문제

Every evening, Farmer John rings a giant bell that summons his cows to the barn for dinner. Eager to get to the barn as quickly as possible, they all follow the shortest possible route to get there.

The farm is described by a set of NN fields (1N10,0001 \leq N \leq 10,000), conveniently numbered 1N1 \ldots N, with the barn residing in field 1. The fields are connected by a set of MM bidirectional trails (N1M50,000N-1 \leq M \leq 50,000). Each trail has a travel time associated with it, and there is a path from every field to the barn using some set of trails.

Field ii contains cic_i cows. Upon hearing the dinner bell, these cows all walk to the barn along a route that takes the minimum amount of time. If there are several routes tied for the minimum time, the cows take whichever of these is "lexicographically" smallest (i.e., they break ties between two routes by favoring the one using the lower-indexed field at the first place where the routes differ, so for example a path that visits fields 7, 3, 6, 1 would be preferable to one that visits 7, 5, 1, assuming both had the same travel time).

Farmer John is worried about the barn being far away from some fields. He adds up the travel time experienced by each cow, summed over all the cows, calling this number the total travel time. He would like to reduce this number as much as possible by adding one extra "shortcut" trail which has a travel time of TT (1T10,0001 \leq T \leq 10,000), from the barn (field 1) to some other field of his choosing. If a cow stumbles upon the shortcut trail while traveling along her usual path to the barn, she will take it if it gets her to the barn faster. Otherwise, a cow will follow her usual route, even if it might have been possible to use the shortcut to improve her travel time.

Please help Farmer John determine the greatest possible amount of decrease in total travel time he can achieve by adding his shortcut trail.

입력

The first line of input contains NN, MM, and TT. The next line contains NN integers c1cNc_1 \ldots c_N, each in the range 010,0000 \ldots 10,000. The next MM lines each describe a trail using three integers aa, bb, and tt, where the trail connects fields aa and bb and has travel time tt. All travel times are in the range 125,0001 \ldots 25,000.

출력

Please output the largest possible reduction in total travel time Farmer John can achieve.

예제 입력 1

5 6 2
1 2 3 4 5
1 2 5
1 3 3
2 4 3
3 4 5
4 5 2
3 5 7

예제 출력 1

40
코드 제출

코드를 제출하려면 로그인이 필요합니다.

로그인
내 제출
제출 내역이 없습니다.
맞은 사람
아직 맞은 사람이 없습니다.
난이도 투표
Unrated0명 투표
로그인 후 AC 받으면 투표할 수 있습니다.
전체 제출
제출 내역이 없습니다.