Good Travels
View as PDFIt's that time of year again - the best ACM-ICPC team of all time is off to the World Finals! Being the best, they realize that a good performance starts before the contest itself - in order to get into the perfect mindset, they must have as much fun on the trip to the contest site as possible!
The Team is interested in a network of  
 cities
(conveniently numbered 
), interconnected by 
 
one-way flights (similarly numbered 
). Their hometown is city 
, and the contest will take place in city 
 
.
Flight 
 goes from city 
 
 to
city 
 
, and no two flights
connect the same pair of cities in the same direction. In general, no
cities are guaranteed to be reachable from other cities by a sequence of
flights. However, The Team of course knows that city 
 is reachable
from city 
 - they're not about to break their streak of triumphant
wins!
Now, each city  has a fun value, 
 
,
associated with it. Along their trip, The Team will take time to have
fun at every city they visit, including the first and last. However,
though they can visit a city multiple times (including cities 
 and
), or even take a certain flight multiple times, surely this gets
boring quickly - therefore, any city's fun can only be had up to once.
The Team wants to determine the maximal amount of fun they can have on
any sequence of flights that starts at city  and ends at city 
.
Naturally, every member on The Team is so intelligent that they've
calculated this value in their heads (and are quite excited about it) -
but can you?
Input Specification
First line: 4 integers, , 
, 
, and 
Next  lines: 1 integer, 
, for 
Next  lines: 2 integers, 
 and 
, for 
Output Specification
1 integer, the maximal amount of fun The Team can have on their trip.
Sample Input
5 6 1 4
5
4
5
10
2
1 2
1 3
2 4
3 4
4 5
5 4
Sample Output
22
Explanation of Sample
The network of cities and flights looks like this (the fun values of cities are shown below them):
The optimal route that The Team can take goes through cities ,
yielding a total fun value of 
.
Comments